2011-04-06 13:03

[JSX] 開啟檔案到圖層

這個程式會將選取的圖檔開啟,並全部複製到一個新的圖片文件中。

  1. //#target photoshop  
  2.  
  3. function copyDoc(toDoc, fromDoc){ 
  4.    app.activeDocument=fromDoc; 
  5.  
  6.    /*如果背景不存在,則標記左上角的 1px*/ 
  7.    if(!fromDoc.backgroundLayer){ 
  8.        var white = new SolidColor(); 
  9.        white.rgb.hexValue = 'FFFFFF'; 
  10.  
  11.        art.selection.select([ [1,0],[1,1],[0,1],[0,0],[1,0] ]); 
  12.        art.selection.fill(white, ColorBlendMode.NORMAL, 1);// 填滿     
  13.    } 
  14.  
  15.    //複製圖層 
  16.    fromDoc.selection.selectAll() 
  17.    fromDoc.selection.copy() 
  18.  
  19.    //貼上圖層 
  20.    app.activeDocument=toDoc; 
  21.    return toDoc.paste(); 
  22. } 
  23.  
  24.  
  25. function main(){ 
  26.    /*取得多個的檔案路徑*/ 
  27.    var filePathList = File.openDialog("開啟圖檔","*",true); 
  28.    if(filePathList.length == 0){return;} 
  29.  
  30.    //新增 Temp 文件 
  31.    var newDoc = app.documents.add( 
  32.        1, 1, 72, 
  33.        "temp", 
  34.        NewDocumentMode.RGB, 
  35.        DocumentFill.TRANSPARENT 
  36.    ); 
  37.    var maxWidth=1, maxHeight=1;     
  38.    var filePath, i=0; 
  39.    while(filePath=filePathList[i++]){ 
  40.        /*開啟圖檔*/ 
  41.        try { 
  42.            var atDoc=open(new File(filePath)); 
  43.        } catch (e) { continue; } 
  44.  
  45.        /*最大高度&寬度*/ 
  46.        if(maxWidth<atDoc.width){ maxWidth=atDoc.width;} 
  47.        if(maxHeight<atDoc.height){ maxHeight=atDoc.height;} 
  48.  
  49.        /*複製檔案*/ 
  50.        copyDoc(newDoc, atDoc); 
  51.  
  52.        /*關閉檔案*/ 
  53.        atDoc.close(SaveOptions.DONOTSAVECHANGES); 
  54.    } 
  55.  
  56.    /*變更圖片尺寸*/ 
  57.    app.activeDocument=newDoc; 
  58.    newDoc.resizeCanvas(maxWidth, maxHeight, AnchorPosition.TOPLEFT); 
  59. } 
  60.  
  61.  
  62. //把Photoshop推到最上層 
  63. app.bringToFront(); 
  64. //設定使用的單位為「像素(Pixel)」 
  65. app.preferences.rulerUnits = Units.PIXELS; 
  66. //執行主程式 
  67. main(); 

0 回應: