photoshop卡顿问题

ps元数据ps元数据

从网上下载的资源用PS打开有时候会很卡顿以下几个方法可以让PS很丝滑

删除冗余的元数据,如何查看元数据菜单(文件)--文件简介(alt+ctrl+shift+i)--原始数据

有时候会显示meta数据过大无法显示。

ps元数据ps元数据

ps元数据ps元数据

如何清理原始数据?

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();

复制代码另存为del.jsx
点击文件菜单---浏览---选择刚才保存的jsx文件即可

ps元数据ps元数据

ps元数据ps元数据

第二种方法自动删除,将文件保存为jsx后,点击脚本事件管理器--先选择photoshop事件---点击脚本---浏览--添加刚才保存的jsx文件,这样在你执行完Photoshop事件后会自动执行脚本文件。

ps元数据ps元数据

ps元数据ps元数据

如何不存储元数据

ps元数据ps元数据