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 回答