是否有可用的脚本/插件/操作可自动将多个图像对齐为网格样式布局,例如wookmark?
我迫切需要一些东西来实现自动化,作为一个每周项目,我必须将大约40个缩略图安排到PSD中。
答案 0 :(得分: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坐标,你就是在散步。