储存为web所用格式可以解决问题(快捷键Ctrl+Alt+shift+S)
当然,这里我有个自己录制的动作,如图
所以我经常在处理很多图片的时候直接点击这个播放按钮就一步完成了,动作怎么录制的可以自行度娘。当然,也可以批处理,但批处理也是要先录制一个动作的。
其次,还有一种办法就是借助切图工具,这里我一直在用的是cutterman(可以到官方网站下载,Windows系统免费,但需要注册),非移动端设备切图选择电脑端就可以,如图:
如果需要对所有图层另存,可以对所有图层编组并命名好,一步导出命名都不用管了,很智能,也很方便。
方法三:
function deleteDocumentAncestorsMetadata() {
whatApp = String(app.name);//String version of the app name
if(whatApp.search(“Photoshop”) > 0) { //Check for photoshop specifically, or this will cause errors
//Function Scrubs Document Ancestors from Files
if(!documents.length) {
alert(“There are no open documents. Please open a file to run this script.”)
return;
}
if (ExternalObject.AdobeXMPScript == undefined) ExternalObject.AdobeXMPScript = new ExternalObject(“lib:AdobeXMPScript”);
var xmp = new XMPMeta( activeDocument.xmpMetadata.rawData);
// Begone foul Document Ancestors!
xmp.deleteProperty(XMPConst.NS_PHOTOSHOP, “DocumentAncestors”);
app.activeDocument.xmpMetadata.rawData = xmp.serialize();
}
}
//Now run the function to remove the document ancestors
deleteDocumentAncestorsMetadata();
把这些代码复制到txt文档,保存后把.txt后缀修改为.jsx
然后打开PS,文件——脚本——浏览——选择导入——确定。效果更佳。