论坛帮助 |
社区圈子 |
日历事件 |
2023-03-31, 15:50 | 只看该作者 #2 | ||
|
|||
正式会员
等级: 五袋长老
|
var sel = doc.selection; if (sel.length > 0) { var newDoc = app.documents.add(); sel[0].duplicate(newDoc, ElementPlacement.PLACEATBEGINNING); var exportOptions = new ExportOptionsTIFF(); exportOptions.resolution = 300; exportOptions.imageColorSpace = ImageColorSpace.RGB; var file = File.saveDialog('Export as TIFF', 'TIFF Files:*.tif'); if (file) { newDoc.exportFile(file, ExportType.TIFF, exportOptions); newDoc.close(SaveOptions.DONOTSAVECHANGES); } } else { alert('Please select an object first.'); } |
||
右列会员因为此帖价值甚高向 866837 表示感谢: |
lwy (2023-03-31)
|