论坛帮助 |
社区圈子 |
日历事件 |
2019-11-19, 03:09 | #1 | ||
|
|||
正式会员
等级: 四袋长老
|
var doc=app.activeDocument filetype=new TiffSaveOptions() filetype.alphaChannels=true filetype.annotations=true filetype.imageCompression=TIFFEncoding.TIFFZIP file= new File (doc.fullname); doc.saveAs(file,filetype) doc.save(SaveOptions.DONOTSAVECHANGES) |
||
2019-11-23, 01:28 | 只看该作者 #2 | ||
|
|||
正式会员
等级: 六袋长老
|
var destFile = new File("e:/test.tif"); var type = ExportType.TIFF; var opts = new ExportOptionsTIFF(); opts.imageColorSpace = ImageColorSpace.RGB; opts.resolution = 300; opts.AntiAliasing = true; opts.IZWCompression = true; opts.saveMultipleArtboards = true; opts.artboardRange = '1'; doc.exportFile(destFile, type, opts); |
||
右列会员因为此帖价值甚高向 professional 表示感谢: |
yzx0120 (2019-12-13)
|