今天碰到的极怪问题,前天创建的一个Ps文件约230M,几经修改只限于价格数目,大小没什么改变,打开速度却越来越慢。12G内存今天更是一度飙升到94%,大有操作1G文件的感觉,有那么一瞬间怀疑是不是内存虚标,在反复几次验证排除了内存质量问题的可能。
在度娘上搜了一会,寻得答案。原来每次操作PS都会写入一种特殊的数据,这些数据不在文件大小上体现,但却真实存在的。以前没感觉到如此明显卡顿,可能是因为内存足够大。以下为去除额外数据脚本代码,记事本另存为「.jsx」格式就好。
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();
然后依次选择 文件→脚本→脚本事件管理器,勾上“启用事件以运行脚本”,事件选择“打开文档”,浏览选择脚本,然后添加即可。
九歌
6-25