Document sizes and jpeg compression / quality

In relation to Photoshop, in the status bar at the bottom it displays what it calls “document sizes”.  Would someone be able to clarify can this be used to determin the quality of a jpeg file ?
For example if I open up a jpeg with no compression (file size on disk is 4.57mb) it displays Doc:34.5M/34.5M however if I open the same file with compression set at 5 (file size on disk is 748kb) and ‘document size’ doesn’t change.  How does the document size relate to jpeg compression etc...?
Thank you

Open a file, say a tiff or psd, zoom in close to the image, about 400% on a recognizable detail. Use the Save As... command, select JPEG, and click Save.
When  you get to the dialog box, run the Quality slider to 0 and observe what happens to the pixels. It's like they are clumped together in large blocks. 
That's how it saves on disk space when it is written back to the file.
477k/477k is the uncompressed size/size in ram and 31.5k is the saved to file compressed size caused by clumping all those pixels together. Of course you trash the file that way,but that's where compression saves space. Not by reducing the pixel count,but by consolidating them.
My point is is that you adjust that slider by eye and from there decide what optimal quality number is worth the space saved.
With broadband connections and terabyte drives, I would not see any point to less than 12 quality compression these days.

Similar Messages

  • Hello ! how to change document sizes and use our own size (not A3, A2 ...) thank you !

    hello ! how to change document sizes and use our own size (not A3, A2 ...) thank you !

    Experiment. No harm in trying.
    If you are just starting to use Pages you need to make your own assessment given current events whether committing your work to a format and software given this support is a wise move.
    You also need to look at what will produce workable results. Particularly if your large posters are to be commercially printed and contain large bitmap (photographic) images.
    Always work backwards from your output. Ask your printer what they require to do their job.
    Peter

  • When dragging an image onto a fresh canvas, the resizing feature presnaps the image into the canvas size. I can confirm that this has not happened to me in previous projects. I've also tested this problem by making a new larger document size and dragging

    Contexts: I am very competent with GFX and have worked on many projects.
    When dragging an image onto a fresh canvas, the resizing feature presnaps the image into the canvas size. I can confirm that this has not happened to me in previous projects. I've also tested this problem by making a new larger document size and dragging in the same render. It snaps again. I don't want to re-size from the canvas dimensions, I want to resize from the render's original dimensions.

    Ap_Compsci_student_13 wrote:
    ok sorry but doesn't sscce say to post the whole code?the first S is Short, and yes, it needs to be all the code needed to illustrate the problem and let use reproduce it. If you were developing a new Web framework, your example might be short, but for a student game it's very long.

  • Enlarging document size and objects as a group

    Greetings . . . New to CS6 and getting my feet wet and most of the features are pretty straightforward. But I haven't been able to find a help file for this one.
    I have an 11x17 document with objects that I need to enlarge to larger sizes to create new templates. How do I enlarge the document size AND enlarge the document's contained objects by the same proportion? I need to take the whole 11x17 document and everything in it and enlarge it to 20x30, 40x60, etc. If I just enlarge the page size in document setup it just enlarges the page, but not the objects on it. I have higher res images to update the object links with once I get it enlarged.
    Thanks! . . . Dave

    Try to Enable Layout Adjustment from Layout menu before enlarge page size in the document setup.

  • JPEG Compression quality in Carbon

    I'm writing a Carbon/Quartz application and we are saving JPEG files. However, I can't figure out how to set the compression quality. I'm using kCGImagePropertyJFIFDictionary but it doesn't seem to have an entry for compression. Is there another dictionary I should be using instead?
    thanks

    To answer my own question, taken from stackoverflow.com, the answer is kCGImageDestinationLossyCompressionQuality in the image dictionary, NOT the JFIF dictionary.
    It looks like it's supposed to work for other formats, but it doesn't seem to work for TIFF for me, because TIFF only wants to save as LZW which is lossless...

  • Document size and final print size

    I am beginning a new aerial drawing in Illustrator CS4 on an 2009 imac, to be printed at 40x40". If the document is sized at 40x40, the computer slows down as detail accumulates. Since Illustrator is a vector-based application, can the document size be set smaller than the final print size, say at 20x20" or 10x10", to keep file size down and speed faster, without losing print quality? 
    Thanks for any help!

    function(){return A.apply(null,[this].concat($A(arguments)))}
    without losing print quality?
    Depends on the specific content of the file and what exactly you mean by 'setting the document size smaller.'
    Better would be to try to discern what is causing the performance issue. Again, that comes down to what the content is.
    JET

  • Resize a layer to a percentage of the document size and position in corner

    I need to create a script that places a logo in the corner of my main document but i need the logo to be constrained to a percentage of the document size. my logos needs to live in the bottom right corner of my images and be no larger than 28 percent height and no larger than 60 percent of the width of the document. i need it to constrain proportions of the original file so if the logo is square it will remain square, or if it is more rectangular it will maintain its rectangular shape.  Heres what i've come up with so far, i am pretty inept at scripting so if disregarding my current script is more helpful than building upon it please ignore mine:
    if ( documents.length > 0 )
        var originalDialogMode = app.displayDialogs;
        app.displayDialogs = DialogModes.ERROR;
        var originalRulerUnits = preferences.rulerUnits;
        preferences.rulerUnits = Units.PIXELS;
        try
            app.activeDocument = app.documents[0];    //set active document to 2nd document   
            var docRefOne = app.documents[0];
            var refWidth = docRefOne.width;
            var refHeight = docRefOne.height;
            app.activeDocument = app.documents[1];    //set active document to 2nd document   
             var docRef = activeDocument;
            //current image dimensions
            var w = docRef.width;
            var h = docRef.height;
            activeDocument.selection.selectAll();
            docRef.selection.copy();   //Copy selection
            app.activeDocument = app.documents[0]; //set first document as active document
            var docRef = activeDocument;
            activeDocument.selection.selectAll();
           docRef.paste(true); //paste into selection
        catch( e )
        // An error occurred. Restore ruler units, then propagate the error back
            // to the user
            preferences.rulerUnits = originalRulerUnits;
           app.displayDialogs = originalDialogMode;
            throw e;
        // Everything went Ok. Restore ruler units
        preferences.rulerUnits = originalRulerUnits;
        app.displayDialogs = originalDialogMode;

    You could do something like this...
    #target photoshop
    activeDocument.suspendHistory('Logo Resize', 'main()');
    function main(){
    if(!documents.length) return;
    var startRulerUnits = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    var myDoc = activeDocument;
    /////////////////////////////// Amend to suit /////////////////////////////////
    var Opacity = 100; /* Opacity of logo */
    //Position logo   X,Y
    var X = myDoc.width - 10; //Right side of logo
    var Y = myDoc.height - 10; //Bottom of logo
    var Logo = File(Folder.desktop + "/logo.png"); //logo
    if(!Logo.exists){
        alert("Your logo '" + decodeURI(Logo.name) + "' does not exist!");
        app.preferences.rulerUnits = startRulerUnits;
        return;
    placeFile(Logo);
    var LB = myDoc.activeLayer.bounds;
    var docHeight = myDoc.height;
    var docWidth = myDoc.width;
    var LHeight = Math.abs(LB[3].value) - Math.abs(LB[1].value);
    var LWidth = Math.abs(LB[2].value) - Math.abs(LB[0].value);  
    if(LWidth > LHeight) {//Landscape logo
    var Percent = 60; /* Resize logo to percentage of smallest side of doc */
    if(LWidth < LHeight) {//Portrait logo
    var Percent = 28; /* Resize logo to percentage of smallest side of doc */
    if(LWidth == LHeight) {//Square logo
    var Percent = 15; /* Resize logo to percentage of smallest side of doc */
    var percentageHeight = ((docHeight/LWidth)*Percent);
    var percentageWidth = ((docWidth/LWidth)*Percent);
    if(docWidth < docHeight){
    myDoc.activeLayer.resize(percentageWidth,percentageWidth,AnchorPosition.MIDDLECENTER);
    }else{  
      myDoc.activeLayer.resize(percentageHeight,percentageHeight,AnchorPosition.MIDDLECENTER);
    var LB = myDoc.activeLayer.bounds;
    X = X - LB[2].value;
    Y = Y - LB[3].value;
    activeDocument.activeLayer.translate(X,Y);
    activeDocument.activeLayer.opacity=Opacity;
    app.preferences.rulerUnits = startRulerUnits;
    function placeFile(placeFile) {
    var desc = new ActionDescriptor();
    desc.putPath( charIDToTypeID('null'), new File(placeFile) );
    desc.putEnumerated( charIDToTypeID('FTcs'), charIDToTypeID('QCSt'), charIDToTypeID('Qcsa') );
    var desc2 = new ActionDescriptor();
    desc2.putUnitDouble( charIDToTypeID('Hrzn'), charIDToTypeID('#Pxl'), 0.000000 );
    desc2.putUnitDouble( charIDToTypeID('Vrtc'), charIDToTypeID('#Pxl'), 0.000000 );
    desc.putObject( charIDToTypeID('Ofst'), charIDToTypeID('Ofst'), desc2 );
    try{
    executeAction( charIDToTypeID('Plc '), desc, DialogModes.NO );
    }catch(e){}

  • Document size and margins

    Please save my sanity!
    I'm trying to create a document that is 3" x 1".  It's a name badge.  Every time I enter my document size I get the following message:
    Specified margin and columns setup does not fit not within the specified page size.
    I've tried adjusting my margins to 0 as well as various other amounts but to no avail.  Still getting the same message
    This is driving me crazy!  It seems like it should be such an easy fix but I'm am just completely missing it.  I should mention that I'm new to InDesign.
    Thanks for any suggestions.
    ~Carla

    After over 6 months of myself and co-workers going through the same error, I may have found a permanent solution. With InDesign open, but without a document open on the screen, go to "file"—"document presets"—"define". From there you can check and change your margins and columns to zero on all presets. Once this is done you should not have any more sizing issues. Let me know if this works for you!
    —Jake Crawford

  • What value does CROP have in editor if you cannot define output document size and document resolution

    Cannot define document size in EDITOR or output resolution. Document can only be defined as RATIO and output is fixed at 300. This problem does not allow you to edit in EDITOR then crop to a specific size so you don't know what the x,y dimension will be once opened in elements. My images are 36x54 at 72 which are 3:4 and can be resized to 4x6 8x12 and so on. Once document is in elements you cannot resize.....either for print or screen to these values without doing another crop or maybe I want something larger than the given crop.

    I don't comprehend this at all.
    On the crop tool's option bar, there should be a drop-down where one can get away from the default crop preset options to "Custom." The replacement values can be entered in inches, and the resolution can be changed to suit as well. Just highlight what you see, and type in new value for px/in.

  • Problem with document size and images in KM Repository

    Hi,
    We get a problem in KM that when we upload documents example pdf and so we donot get respective document icon and also the document size always shows as 0 Bytes.
    Any suggestions?
    Thanks,
    Manish

    Hi Manish,
    I just uploaded a PDF, 2.8 MB. It appears, /irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/etc/public/mimes/images/pdf.gif appears, 2.8 MB are shown.
    You are using the standard KM "Folder - New - Upload" component? If yes, it's just a bug. If you use your own component, it's a bug too but then on your individual site.
    Here it is tested on EP6 SP2 P4 HF6 / CM6 SP2 P3 HF4.
    Hope it helps
    Detlev

  • Colour colour profiles and JPEG compression mismatch

    In preparing images for iBooks I have noticed bizarre behaviours and a number of problems with matching colours.
    For example, if a JPEG image all one colour is placed in a gallery widget over a text box, and then the background colour of the textbox is set to the colour of the image by sampling the colour in the image using the colour picker, when downloaded to the iPad the colours will not match (although they appear to in iBooks Author). I presume this must be a bug with the encoding of the JPEG? Or is it a conversion issue between different colour profiles used for the solid colours in iBooks and the sRGB colours that Apple advises using for images?
    I have also noticed that if you download a book to an iPad the colour matching between solids and image colours changes radically depending on what monitor you have the computer running iBooks Author plugged into (ie depending on the monitor profile in use). What colour profile does iBooks author use for solids and what for images and why are they different? Is it conversing the solids but not the images, or vice versa, and between which colour spaces? What is the working colour space of iBooks Author? Does it differ depending on the monitor profile? If so, why does converting images to the monitor profile still not result in them matching the solids used in iBooks Author?
    In short, does anyone have a clue what is going on with the colour profiles and colour matching in iBooks Author and iBooks on the iPad? They certainly display the most perplexing behaviour I have ever come across.
    Giles Hudson

    Although you say there is no concept of a colour profile in iOS, the problem is that iBooks Author does recognize profiles, and appears to take them into consideration when downloading images to books on the iPad. For example, an image tagged with an sRGB profile placed in iBooks Author will appear differently from an identical image tagged with an Adobe RGB profile. The problem is, it is not at all clear what conversion is going on, especially when using a monitor with a different colour profile appears to cause radically different behaviour in the conversion. Is it being converted to "Device RGB" that the colour picker apepars to use? What is this Device RGB? The monitor RGB or the iPad RGB?
    I understand that iOS supports RGB and CMYK. However, the important question is, which working space does iBooks Author use? sRGB, GenericRGB, Device RGB (whatever that is), Apple RGB, Adobe RGB, the monitor RGB? Without knowing this it is difficult to match solid colours to colours in images (and even arguably impossible due to the JPEG encoding problem I mentioned above).
    All this vagueness in colour handling with OSX and iOS makes life very difficult, especially, as you suggest, when things have the potential to change at any minute, potentially wrecking months of painstaking work that has been put into designing books in iBooks Author.

  • Can I save a documents size and position?

    I want Indesign to remember the last view of the document, so when I open the file again I don't have to adjust the zoom and find the last place I was working in the document.  Is this an option??  I thought CS5 did this for me but maybe I am mistaken.  Now in CS6, Indesign is zooming in and is positioned half of the document everytime I reopen the file.  Thanks for the help.

    and it just keeps resizing the window to full screen even after I adjust it to fit within the toolbar space
    Perhaps you are not using the snapping feature of docked tool panels. Try docking your toolbar in the Landing Zone on the left and try docking all your panels in the Landing Zone on the right edge of the screen. Try docking the document window under the Control Panel at the top. Doing these things should automatically resize the document window to dwell within the edges of the left sides's tool box, the right side's panel dock, and the top edge should self-adjust, too, because it is snapped in.
    Easier than that, try resetting the workspace to advanced. This should dock the document into the available space without it going behind the toolbox and panels.
    Another simple thing to click on is at the top center: Arrange Documents button > Consolidate All.
    Any of these things should cure the problem of having the document window run behind the toolbox and panels. Rather, it should shoulder up next to them, and self-adjust. You should never have to adjust it manually to fit within the toolbar space.

  • How can I make the wallpaper without big size and without losing quality?

    When I make the wallpaper I don't want that pictures be extended.

    What's your model of iPad? Look at the specs for your  model then use a program like photoshop to make a wallpaper that is how big your screen is....for example my iPad 2 is 10024 x 768 pixels. So if I open up photoshop (or other photo editing program) I can make a template that's that pixel dimension then get other images to fit it. Export them to iTUnes and get them on my iPad and then set them as wallpaper.
    If you go in through the photos app and send your images to be wallpaper from there you'll have a bit more control than if you go in through the settings panel. But how much control will depend on the size of your original image. A nice large high res image will come out better than a tiny little low resolution image.

  • Remember size and location when opening saved document (CS5)

    Greetings,
    It would be nice to have a preference to remember screen rendered document size and location when saved, then the document opens at the last used size and location; I now reposition and resize every time I open my documents, which is often.
    Perhaps this feature has not been forgotten or omitted, maybe I just haven't found it yet?
    Garrett

    "I now reposition and resize every time I open my documents, which is often."
    Yeah, you said it... Which means that 100 times a day I curse Adobe for not including such a basic, fundamental capability.
    It's hard to believe that they do any testing by real users at all... How could they have missed this? And why haven't they immediately fixed it in a point update?

  • API to restric size and type documents uploaded

    Hi Guys,
    I'd like to know if exists any api to restrict the each document size and type, when you upload it?
    For example, load anly documents type .pdf with size no higher than 4K.
    Thanks.
    Ciao.Liliana.

    How about using folder quotas to tackle the size issue? As for file types, I'm not sure on how this could be done.

Maybe you are looking for

  • Installing ITunes on XP with 2 Users and one library.

    Is this possible ? My friend has an XP machine with 2 users, and they would like to be able to share there iTunes library with each other ! Thanks.

  • New Sync between computers using iPod

    Steve said that you should be able to sync music between two computers one being a mac, and the other being a PC, im trying to do that now, but when i insert the ipod into the PC it says they aren't formatted for a PC, im just not sure how its suppos

  • Gallery Issues

    Hi All, So I have made a generic page in iweb, and copied it several times so I have the same layout for all of my pages. When I get to my Gallery page, is there a way of having my photos come up in gallery form on my template that I am using on all

  • Bringing in 5D mark iii files via Log & Transfer in FCP 7.0.3?

    Hello- Running FCP 7.0.3 on Duo Quad Core Mac Pro, 10.6 OS. Just shot some lovely stuff with new 5D mark iii and hoping to use FCP log and transfer tool to bring it in.  (Footage is part of a Canon HDSLR-shot project and have succesfully brought in 5

  • Desperately Need Help - How to cancel jobs other than SM50

    Hello, I am a BI analyst.  I have a job that is loading data and cannot seem to get it to stop loading to the PSA. I is a BWREMOTE job loading data to the 2LIS_03_BF datasource. I went into SM50 and keep cancelling with core/ without core, but they j