今天让美工发我网站的banner源文件的时候,发现打开文件好卡c盘直接爆了,发现文件只有几十M,但是卡的跟幻灯片一样,很奇怪,打开其他文件就不卡,在一篇文章上面看到的解决方法如下,问题就是原始数据搞的鬼
2.找到【原始数据】栏,有很多代码。每次对文件的修改都会以数据的形式保存在这里,也就是修改的越多这里的数据也越多,数据一但过多就会变的很卡,然后我们可以选中这些数据,但是完全删不了,是的!直接选中是无法删除的,那么我们就需要通过其他方法来删除了
function deleteDocumentAncestorsMetadata() {
//String version of the app name
whatApp = String(app.name);
// Check for photoshop specifically, or this will cause errors
if(whatApp.search("Photoshop") > 0) {
// 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();
点击载入,在保存一下那个卡顿的ps,就会发现内存变小边流畅了
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。