Skip to main content
Inspiring
April 11, 2017
질문

Photoshop files much larger than usual.

  • April 11, 2017
  • 3 답변들
  • 27572 조회

Hello,

I am having a problem with saving PSD files to my desktop. a file that used to be 150 MB is now 350 MB or so. Is there a reason my files would suddenly be saving so large? I updated Photoshop and my computer.  Thanks!

3 답변

tmyusuf74
Inspiring
April 18, 2017

What is the image bit rate.

SDron
Participant
April 14, 2017

Hi

Why does my psd file take up 62mb, although it does not have layers?

Download my file from the link

Dropbox - test.psd

c.pfaffenbichler
Community Expert
Community Expert
April 16, 2017

Check out the Raw Data (File > File Info).

SDron
Participant
April 17, 2017

I found a solution:
The script provided should strip the metadata in Photoshop just run the script before saving the files out. Adobe has no need to create artificial bugs.

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

But I could not understand the source of the problem.

The new document is created correctly. But when I copy a layer from a problem file into a new document, it also takes 62mb

c.pfaffenbichler
Community Expert
Community Expert
April 11, 2017

What does the file contain exactly?

What are its pixel dimensions and resolution?

What are the bit depth and color mode?

saraf33087454작성자
Inspiring
April 11, 2017

They are design files, many layers that need to be preserved. 300 DPI, 13"x19", 3900px x 5700px, RGB, 8bit. I have many files that are essentially the same, they just sitting saving much larger in the last week.

c.pfaffenbichler
Community Expert
Community Expert
April 11, 2017

Photoshop is saving files larger than it used to, and that is my problem, for instance, if I open up a file and save it again, it will save larger than it was before.


Can you provide a before and after file for testing?

What are your File Handling Preferences?