3
有沒有辦法將頁面導出爲使用InDesign服務器的PNG?使用InDesign服務器將頁面導出爲PNG
以下代碼適用於文本框架。我如何爲完整的頁面內容做同樣的事情?
var theDocument = app.documents.add();
var thePage = theDocument.pages[0];
var theTextFrame = thePage.textFrames.add();
theTextFrame.geometricBounds = [5,5,40,40];
theTextFrame.contents = TextFrameContents.placeholderText;
theTextFrame.exportFile(ExportFormat.pngFormat, File("c:\\test.png"));
謝謝,你是對的InDesign出口似乎沒有包括任何選項。 – arjunurs