用了PhotoshopCC之后的版本发现了个问题,就是源文件做着做着就莫名的变得超大,就算把文件里所有东西删了,文件大小也不会变小,今天终于知道了原因。可能是新版本算法的一个BUG,就是你把图片拉进来就把文件计算在里面,不管你用了多少,或者删掉了,都会保留计算在文件里,所以你的PS文件就会越来越大,所以需要以下方法净化一下文件。
使用方法:将下面这段代码复制粘贴到文本工具当中,另存为 Jsx 格式文件。再 PS 打开有问题的文档,「 文件」——「 脚本」——「 浏览...」这时脚本会在自动处理文件,等文件变成可以保存状态说明已经处理完毕,选择保存即可解决。
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();
网友评论