PS制作需要打印的大尺寸图?
不可以的,必须按照打印尺寸建文档。
但是你的分辨率可以设置成100-50之间。具体设置多大,需要看你要做什么样的东西了,如果是喷绘布,我一般设置成70-50之间,如果是展板,我一般设置成150-100之间。
再就是PS很卡。你打开任务管理器,快捷键CTRL+SHIFT+ESC,如下图,你看一下除了PS,还有哪个占用CPU和内存很大,你把它们关掉,包括360和VX。
还有,如果你设计时用到的素材本身很大,比如1个G,当你把这个素材拖拉到你的文档上后,就把它关了吧,然后需要给你的文档清除历史痕迹。你要先准备一个文件,就是下图红框里的,旁边记事本里是内容,你可以自己做一个,具体做法我忘了,你自己查一查。
使用的时候如下图。
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();
有问题可留言或私信,没问题请采纳。