簡體   English   中英

將單獨的畫板導出為PNG插畫腳本

[英]export separate art boards as PNG illustrator script

我創建了一個簡單的插圖畫家腳本,以遍歷畫板並將每個PNG導出為原始插圖畫家文件所在的文件夾。至少我以為有。 我不需要對圖層或不同格式進行任何復雜的處理,這只是加快產品生產速度而已。 我對.jsx有點生疏,並贊賞有類似的解決方案,但是我無法運行它。 似乎在doc.ExportFile行上失敗了,但是我真的看不到我在做什么錯。 我會很感激任何人看一下:

var doc = activeDocument;;//Gets the active document
var numArtboards = doc.artboards.length;//returns the number of artboards in the document
var basePath  = new File($.fileName).parent.fsName;

$.writeln(doc)
var options;
options = new ExportOptionsPNG24();
options.artBoardClipping = true;  
      options.matte = false;  
      options.horizontalScale = 100;
      options.verticalScale = 100;  
      options.transparency = true;  

for (var i = 0; i < numArtboards; i++ ) {
    doc.artboards.setActiveArtboardIndex( i );
var artboardName = doc.artboards[i].name;        
            var destFile = new File('/' + artboardName + ".png");

    doc.exportFile(destFile, ExportFormat.PNG24 , options);
}

主要問題似乎是您必須擁有帶有文件名的目標路徑。 現在這似乎可行:(您可能需要更改fileNamr的生成,因為代碼僅獲取文件名的第一個n個字母)

var doc = app.activeDocument;;//Gets the active document
var fleName = doc.name.slice(0, 9)//Get the file code number not the full name;
var numArtboards = doc.artboards.length;//returns the number of artboards in the document
var filePath = (app.activeDocument.fullName.parent.fsName).toString().replace(/\\/g, '/');

$.writeln("fleName= ",fleName)
$.writeln("numArtboards= ",numArtboards)
$.writeln("filePath= ",filePath);

var options = new ExportOptionsPNG24();

for (var i = 0; i < numArtboards; i++ ) {
    doc.artboards.setActiveArtboardIndex( i ); 

    options.artBoardClipping = true;  
    options.matte = false;  
    options.horizontalScale = 100;
    options.verticalScale = 100;  
    options.transparency = true;  

    var artboardName = doc.artboards[i].name;
    $.writeln("artboardName= ", artboardName);
        var destFile = new File(filePath + "/" + fleName + " " +  artboardName + ".png");
        $.writeln("destFile= ",destFile);
          doc.exportFile(destFile,ExportType.PNG24,options);
    }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM