我需要使用Javascript在photoshop中创建一个空白画布,并将打开的图像添加到该画布上的特定位置(通过使用Javascript不会手动移动图像)
我试过这段代码:
//create canvas
var canvas= app.documents.add(5000,5000,72);
var ctx = canvas[0].getContext('2d');
var inputFolder = Folder.selectDialog("Select a folder to process");
var fileList = inputFolder.getFiles();
//open file and auto contrast it
for (var i = 0, len = fileList.length; i < len; i++){
var i = 1;
var filename = fileList[i].name;
var img = app.open(File(inputFolder + "/" + filename));
img.activeLayer.autoContrast();
}
canvas[0].getContext('2d')
处出现错误。它说get.Contec
t函数不存在。
我之前也尝试了canvas = elem.find('canvas')[0]
和var canvas = document.createElement('canvas')
,但都没有。
有谁知道哪里出错了?
答案 0 :(得分:0)
您在文件列表上的循环错误。无限错。尝试这样的事情。
for (var i = 0; i < fileList.length; i++)
{
try
{
var doc = open(fileList[i]);
}
catch(e)
{
alert("Failed to open file!");
}
}