首页 行业资讯 宠物日常 宠物养护 宠物健康 宠物故事

明明只有几个图层,为什么我的 PSD 文件这么大

发布网友

我来回答

3个回答

热心网友

文件大和图层多少没有关系,这个问题有几种,如果一个新建只有200MB,你放一个图进去,很大,但是只显示其中的一小部分,其它没有被显示出来的图也是算在里面的,如果拖进去很大的几张图,又是高清的,那你的PS文件就会大很多。需要做适当的优化处理。

热心网友

PSD 文件大小不光是与图层有关,还与分辨率和像素有关

热心网友

应该是冗余的信息太多了。这里面有个脚本,很好用,我试过,一下了瘦了无数倍。文件莫明很大,一般是发生在将大尺寸文件改为小尺寸时发生的。
可以把下面文字拷到记事本里,然后扩展名改为".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 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();

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com