优艾设计网

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

优艾设计网 https://www.uibq.com 2020-09-14 00:00 出处:网络 作者:魏司计
使用Photoshop设计图片时,会因为使用图片、引用智能对象、图层问题造成储存的PSD文件过大,解决办法我也找了一段时间,在百度偶然看见解决办法,亲测有效,附件中是我存好的JSX文件,可以下载使用,第一次尝试解决

使用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

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

www.16xx8.com

感谢百度上面的dowson2002 大神

0

精彩评论

暂无评论...
验证码 换一张
取 消