0

wookmark など、複数の画像をグリッド スタイルのレイアウトに自動的に配置するスクリプト/プラグイン/アクションはありますか?

毎週のプロジェクトとして、約 40 個のサムネイルを PSD に配置する必要があります。

4

1 に答える 1

1

JavaScript を使用しています...

次のように、座標点の配列を使用して選択を定義できます。

var x = 0;
var y = 0;
var w = thumbnailDoc.width; // width of thumbnail document
var h = thumbnailDoc.height; // height of thumbnail document

var sel = [ // Define a rectangle of coordinate points 
    [x, y], // moving clockwise from top-left corner of rectangle
    [x + w, y],
    [x + w, y + h],
    [x, y + h],
    [x, y] //back to start
];

var doc = app.documents.add(200, 200, 72) // create new document (width, height, resolution)

doc.selection.select(sel); // make a selection using the array of coordinates
doc.paste(true) // paste the contents of the clipboard
                // pass in the boolean 'true' to make it paste into the selection

したがって、すべての画像をループ処理し、縮小していない場合はサムネイルにサイズ変更し、クリップボードにコピーして、作業中のドキュメントの選択範囲に貼り付けるだけです。歩きながら x,y 座標をインクリメントします。

于 2012-06-14T18:26:24.197 に答える