如何从url下载图像以在Photoshop脚本中使用(ExtendScript Toolkit)

时间:2016-08-17 15:56:01

标签: javascript photoshop extendscript

在我的Photoshop javascript(使用ExtendScript工具包)中,我需要在处理之前下载图像。我正在尝试wget,因此:

app.system("wget https://dl.dropboxusercontent.com/u/73950/IMG_1827%20%282%29.png > ~/Desktop/test.png");

不幸的是,这会产生一个空的png文件。

使用Photoshop编写脚本时,从url下载文件的正确方法是什么?

2 个答案:

答案 0 :(得分:4)

没有运气就尝试了你的wget命令。但它对我来说很有用。

app.system("curl -o ~/Desktop/test.png https://dl.dropboxusercontent.com/u/73950/IMG_1827%20%282%29.png")

答案 1 :(得分:0)

仅在Mac上有效,下面是两种方式:

if ( Folder.fs.indexOf("Win") > -1 ) {//SYSTEM IS ONE OF THE WINDOWS
    app.system("cmd.exe /c \"bitsadmin /Transfer myDownloadJob " + imageUrl + " " + localImgPath + "\"");
}else{
    app.system("curl -o " + localImgPath + " " + imageUrl);
}