如何设置图像的新分辨率

时间:2018-06-10 15:11:52

标签: applescript

我是我脚本的一部分,我将图像从1200 dpi缩小到300 dpi。

我正在尝试这样做:

repeat with i in input
    tell application "Image Events"
        launch
        set my_image to open i
        set resolution to {300,300}
        set color space to CMYK
        save my_image as TIFF

但分辨率只读????

如何设置图像的新分辨率?

1 个答案:

答案 0 :(得分:1)

我认为您需要致电sips为您设置:

do shell script "sips -s dpiHeight 300 -s dpiWidth 300 " & my_image