PSD文件操作卡顿、另存为JPG的时候文件特别大,jpg文件特别大解决办法(清除元数据)
长话短说:
方法一:
复制下方的脚本代码在TXT,后缀名改成.jsx
这个脚本使用方法就是打开过大的psd的时候,双击启动一下这个脚本,当前打开的psd文件就会清除元数据。
这时候psd操作的时候就不卡顿了,另存为jpg也是正常大小,不会再出现几百M的情况啦
方法二:
也有一个可以批量去除的软件,直接网上搜索 Exif Tag Remover 即可
有一些文件,明明图片像素不大,文件大小却很大,查看元数据后发现元数据很多,很占大小,那么如何去掉元数据呢
方法2
-
打开记事本,输入以下文字,并存储为.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 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打开文件,点击【文件】【脚本】【浏览】,弹出的文件选择框,选择之前保存的jsx文件,点击【载入】即可完成删除多余的元数据
版权声明:
作者:loyolife
链接:https://loyolife.com/709.html
来源:loyolife | 高效工作,轻松生活~ | 悠哉知识集
文章版权归作者所有,未经允许请勿转载。
共有 0 条评论