#PS瘦身#--解决photoshop储存PSD或jpg文件异常过大的方法

user

雨橙

中国.四川.成都

世界之上、唯有远见、惟爱不变。


在工作中使用Photoshop设计图片时,会因为使用图片、引用智能对象、图层问题造成储存的PSD文件过大,解决办法我也找了一段时间,在百度偶然看见解决办法。

下面是解决photoshop储存PSD文件异常过大的方法整理,仅供参考。

使用方法:将下面这段代码复制粘贴到文本工具当中,另存为 Jsx 格式文件。再 PS 打开有问题的文档,「 文件」——「 脚本」——「 浏览...」选择保存的 Jsx 格式文件即可解决。

脚本如下:

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 s cript.")
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();

点击下载文件
posted at