发布网友
共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();