保存技巧,解决PSD文件导出过大的问题

使用Photoshop设计图片时,会因为使用图片、引用智能对象、图层问题造成储存的PSD文件过大,解决办法我也找了一段时间,在百度偶然看见解决办法,亲测有效,附件中是我存好的JSX文件,可以下载使用,第一次尝试解决,务必做好备份

使用方法:将下面这段代码复制粘贴到文本工具当中,另存为 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.AdobeXMPs cript == undefined) ExternalObject.AdobeXMPs cript = new ExternalObject("lib:AdobeXMPs cript");
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();

如果复制以上文件无效,可以下载我存好的JSX文件 或者去原百度贴吧地址复制

原始地址: http://tieba.baidu.com/p/2305716725#107044658512l?qq-pf-to=pcqq.c2c


www.16xx8.com

感谢百度上面的dowson2002 大神

全教程完,学完记得交作业。如果本教程对您有所帮助,请推荐给你的朋友。

【原创教程 投稿邮箱: ps@16xx8.com】

长按二维码关注我们

关注我们微博:@photoshop教程论坛

推荐教程