Lightroom 5 exporting wrong file sizes?

I am having trouble with Lightroom 5 exporting images at incorrect file sizes. For example, if I use my export preset for images with long edge 2500 pixels and maximum size 1000k it is exporting images at 1500-2500k. 
Is anyone else experiencing this? I am wondering if it is a bug.
Thanks

I never had a problem with it in LR4. The example I gave was one of many options I tried. At the other end I asked it to produce smaller files (eg 1500pixels long edge) with a 1000k maximum and I could only get them to output at around 160k.
I have since realised that I neglected to mention that I was using LR/Mogrify2 plug in to add a text graphic to the images. I experimented with turning that option off and I was able to produce a 2500px long edge file at 996k. As soon as I turn that option on again the file ouptuts at 1600k (where I have specified at 1000k limit).
This was never a problem with LR4 so there is a conflict or a bug somewhere.
Is anyone else using a LR / Mogrify 2 plug in and experiencing unpredictable results? I have the option to use LR / Mogrify 2's version of ImageMagick checked.
Message was edited by: Shipp
So I just did further testing. It seems that LR5 cannot control the maximum file size when working with Lr / Mogrify 2. If I ask the plug in to resize the image and control the maximum file size I can produce a file with long edge 2500pix, 1000k maximum size and the text graphic with no problem at all, as I used to be able to do with LR4. I will contact the plug in developer and see if they are aware of this.

Similar Messages

  • Aperture is exporting large file size e.g. original image is 18.2MB and the exported version (TFF 16 Bit) is 47.9MB, any ideas please

    Aperture is exporting large file size e.g. original image is 18.2MB and the exported version (TFF 16 Bit) is 47.9MB, any ideas please

    Raws, even if not compressed, Sould be smaller than a 24-bit Tiff, since they have only one bitplane. My T3i shoots 14 bit 18MP raws and has a raw file size of 24.5 MB*. An uncompressed Tiff should have a size of 18 MP x 3 bytes per pixel or 54 MB.
    *There must be some lossless compression going on since 18 MP times 1.75 bytes per pixel is 31.5MB for uncompressed raw.

  • Lightroom Keeping Original File Size on JPEG Export

    In Photoshop Light room, when I make edits to some JPEG files in a library and leave some unedited, I want to then export the JPEG files, keeping their original file sizes. The default quality setting is 60%, but this reduces the file sizes.
    How do I keep the original file sizes?
    Thx.
    Tony.

    > The default quality setting is 60%, but this reduces the file sizes. How do I keep the original file sizes?
    All of the Export Presets can be edited and the new settings made to be default. Alternatively you can set up your own, new, presets to your own specification.

  • Export constrain file size

    The lab my client uses doesn't like to handle jpegs larger than about 2MB. OK, that's their rule and I have to make it work.
    In PhotoShop, when I converted to jpeg I could see how large a file it was going to produce. In LightRoom I don't know how to do that. I can choose a quality, which isn't measured in anything. And I can enter a dpi, which shouldn't make any difference if the pixel count is unchanged. There's no way to sort by size. So I guess and export them all, then check the sizes and go back again and re-export the files that are too large. Very Clumsy.
    Can anyone advise me how to get these Canon 5D files to convert to jpegs at around 2MB?
    -wick

    Through trial and error (no help from LightRoom), I decided to contrain the file size to within a 2K by 2K pixel rectangle. This gives me roughly the right file size. thanks to all for your suggestions. In the end, of course, I either have to downsize the image or raise the compression to around 60 (as Ian suggested). In the end, assuming a print size no larger than 8 x 10, do you think the better solution is to downsize or upcompress?
    -wick
    PS: Has anyone else come across the bug mentioned in my second post, where exporting the same file over and over leads to the wrong file getting exported? Maybe LightRoom just got bored?

  • Problem exporting '.txt' file size 23 KB and '.zip' file size 4 MB

    I am using Apex 3.0 version screen to upload '.txt' file and '.zip' file containing images.
    I can successfully export '.txt' file and '.zip' file containing images as long as '.txt' file size is < 23 KB and '.zip' file size < 4 MB from database table 'TBL_upload_file' to the OS directory on the server.
    processing of Larger files (sizes 35 KB and 6 MB) produce following Error Message.
    ‘ORA-21560: argument 2 is null, invalid or out of range’ error.
    Here is my code:
    I am using following code to export Documents from database table 'TBL_upload_file' to the OS directory on the server.
    create or replace procedure "PROC_LOAD_FILES_TO_FLDR_BYTES"
    (pchr_text_file IN VARCHAR2,
    pchr_zip_file IN VARCHAR2)
    is
    lzipfile varchar(100);
    lzipname varchar(100);
    sseq varchar(1000);
    ldocname varchar(100);
    lfile varchar(100);
    -- loaddoc (p_file in number) as
    l_file UTL_FILE.FILE_TYPE;
    l_buffer RAW(32000);
    l_amount NUMBER := 32000;
    l_pos NUMBER := 1;
    l_blob BLOB;
    l_blob_len NUMBER;
    l_file_name varchar(200);
    l_doc_name varchar(200);
    a_file_name varchar (200);
    end_pos NUMBER;
    begin
    -- Get LOB locator
    SELECT blob_content,doc_name
    INTO l_blob,l_file_name
    FROM tbl_upload_file
    WHERE DOC_NAME = pchr_text_file;
    --get length of blob
    l_blob_len := DBMS_LOB.getlength(l_blob);
    -- save blob length to determine end position
    end_pos:= l_blob_len;
    -- Open the destination file.
    -- l_file := UTL_FILE.fopen('BLOBS','MyImage.gif','w', 32767);
    l_file := UTL_FILE.fopen('BLOBS',l_file_name,'WB', 32760); --use write byte option supported in 10G
    -- if small enough for a single write
    IF l_blob_len < 32760 THEN
    utl_file.put_raw(l_file,l_blob);
    utl_file.fflush(l_file);
    ELSE -- write in pieces
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
    UTL_FILE.put_raw(l_file, l_buffer);
    utl_file.fflush(l_file); --flush pending data and write to the file
    -- set the start position for the next cut
    l_pos := l_pos + l_amount;
    -- set the end position if less than 32000 bytes, here end_pos captures length of the document
    end_pos := end_pos - l_amount;
    IF end_pos < 32000 THEN
    l_amount := end_pos;
    END IF;
    END LOOP;
    END IF;
    --- zip file
    -- Get LOB locator to locate zip file
    SELECT blob_content,doc_name
    INTO l_blob,l_doc_name
    FROM tbl_upload_file
    WHERE DOC_NAME = pchr_zip_file;
    l_blob_len := DBMS_LOB.getlength(l_blob);
    -- save blob length to determine end position
    end_pos:= l_blob_len;
    -- Open the destination file.
    -- l_file := UTL_FILE.fopen('BLOBS','MyImage.gif','w', 32767);
    l_file := UTL_FILE.fopen('BLOBS',l_doc_name,'WB', 32760); --use write byte option supported in 10G
    -- if small enough for a single write
    IF l_blob_len < 32760 THEN
    utl_file.put_raw(l_file,l_blob);
    utl_file.fflush(l_file); --flush out pending data to the file
    ELSE -- write in pieces
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
    l_pos:=1;
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
    UTL_FILE.put_raw(l_file, l_buffer);
    UTL_FILE.fflush(l_file); --flush pending data and write to the file
    l_pos := l_pos + l_amount;
    -- set the end position if less than 32000 bytes, here end_pos contains length of the document
    end_pos := end_pos - l_amount;
    IF end_pos < 32000 THEN
    l_amount := end_pos;
    END IF;
    END LOOP;
    END IF;
    -- Close the file.
    IF UTL_FILE.is_open(l_file) THEN
    UTL_FILE.fclose(l_file);
    END IF;
    exception
    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-20214,'Screen fields cannot be blank, Proc_Load_Files_To_Fldr_BYTES.');
    WHEN TOO_MANY_ROWS THEN
    RAISE_APPLICATION_ERROR(-20215,'More than one record exist in the tbl_load_file table, Proc_Load_Files_To_Fldr_BYTES.');
    WHEN OTHERS THEN
    -- Close the file if something goes wrong.
    IF UTL_FILE.is_open(l_file) THEN
    UTL_FILE.fclose(l_file);
    END IF;
    RAISE_APPLICATION_ERROR(-20216,'Some other errors occurred, Proc_Load_Files_To_Fldr_BYTES.');
    end;
    I am new to the Oracle.
    Any help to modify this scipt and resolve this problem will be greatly appreciated.
    Thank you.

    Ask this question in the Apex forums. See Oracle Application Express (APEX)
    Regards Nigel

  • Problem exporting txt' file size is 23 KB and '.zip' size 4 MB

    I am using Apex 3.0 version screen to upload '.txt' file and '.zip' file containing images.
    I can successfully export '.txt' file and '.zip' file containing images as long as '.txt' file size is < 23 KB and '.zip' file size < 4 MB from database table 'TBL_upload_file' to the OS directory on the server.
    processing of Larger files (sizes 35 KB and 6 MB) produce following Error Message.
    ‘ORA-21560: argument 2 is null, invalid or out of range’ error.
    Here is my code:
    I am using following code to export Documents from database table 'TBL_upload_file' to the OS directory on the server.
    create or replace procedure "PROC_LOAD_FILES_TO_FLDR_BYTES"
    (pchr_text_file IN VARCHAR2,
    pchr_zip_file IN VARCHAR2)
    is
    lzipfile varchar(100);
    lzipname varchar(100);
    sseq varchar(1000);
    ldocname varchar(100);
    lfile varchar(100);
    -- loaddoc (p_file in number) as
    l_file UTL_FILE.FILE_TYPE;
    l_buffer RAW(32000);
    l_amount NUMBER := 32000;
    l_pos NUMBER := 1;
    l_blob BLOB;
    l_blob_len NUMBER;
    l_file_name varchar(200);
    l_doc_name varchar(200);
    a_file_name varchar (200);
    end_pos NUMBER;
    begin
    -- Get LOB locator
    SELECT blob_content,doc_name
    INTO l_blob,l_file_name
    FROM tbl_upload_file
    WHERE DOC_NAME = pchr_text_file;
    --get length of blob
    l_blob_len := DBMS_LOB.getlength(l_blob);
    -- save blob length to determine end position
    end_pos:= l_blob_len;
    -- Open the destination file.
    -- l_file := UTL_FILE.fopen('BLOBS','MyImage.gif','w', 32767);
    l_file := UTL_FILE.fopen('BLOBS',l_file_name,'WB', 32760); --use write byte option supported in 10G
    -- if small enough for a single write
    IF l_blob_len < 32760 THEN
    utl_file.put_raw(l_file,l_blob);
    utl_file.fflush(l_file);
    ELSE -- write in pieces
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
    UTL_FILE.put_raw(l_file, l_buffer);
    utl_file.fflush(l_file); --flush pending data and write to the file
    -- set the start position for the next cut
    l_pos := l_pos + l_amount;
    -- set the end position if less than 32000 bytes, here end_pos captures length of the document
    end_pos := end_pos - l_amount;
    IF end_pos < 32000 THEN
    l_amount := end_pos;
    END IF;
    END LOOP;
    END IF;
    --- zip file
    -- Get LOB locator to locate zip file
    SELECT blob_content,doc_name
    INTO l_blob,l_doc_name
    FROM tbl_upload_file
    WHERE DOC_NAME = pchr_zip_file;
    l_blob_len := DBMS_LOB.getlength(l_blob);
    -- save blob length to determine end position
    end_pos:= l_blob_len;
    -- Open the destination file.
    -- l_file := UTL_FILE.fopen('BLOBS','MyImage.gif','w', 32767);
    l_file := UTL_FILE.fopen('BLOBS',l_doc_name,'WB', 32760); --use write byte option supported in 10G
    -- if small enough for a single write
    IF l_blob_len < 32760 THEN
    utl_file.put_raw(l_file,l_blob);
    utl_file.fflush(l_file); --flush out pending data to the file
    ELSE -- write in pieces
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
    l_pos:=1;
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
    UTL_FILE.put_raw(l_file, l_buffer);
    UTL_FILE.fflush(l_file); --flush pending data and write to the file
    l_pos := l_pos + l_amount;
    -- set the end position if less than 32000 bytes, here end_pos contains length of the document
    end_pos := end_pos - l_amount;
    IF end_pos < 32000 THEN
    l_amount := end_pos;
    END IF;
    END LOOP;
    END IF;
    -- Close the file.
    IF UTL_FILE.is_open(l_file) THEN
    UTL_FILE.fclose(l_file);
    END IF;
    exception
    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-20214,'Screen fields cannot be blank, Proc_Load_Files_To_Fldr_BYTES.');      
    WHEN TOO_MANY_ROWS THEN
    RAISE_APPLICATION_ERROR(-20215,'More than one record exist in the tbl_load_file table, Proc_Load_Files_To_Fldr_BYTES.');     
    WHEN OTHERS THEN
    -- Close the file if something goes wrong.
    IF UTL_FILE.is_open(l_file) THEN
    UTL_FILE.fclose(l_file);
    END IF;
    RAISE_APPLICATION_ERROR(-20216,'Some other errors occurred, Proc_Load_Files_To_Fldr_BYTES.');     
    end;
    I am new to the Oracle.
    Any help to modify this scipt and resolve this problem will be greatly appreciated.
    Thank you.

    Ask this question in the Apex forums. See Oracle Application Express (APEX)
    Regards Nigel

  • Exported media file size issues Sometimes one size, Sometimes another without making any changes in FCPX?

    Hi there
    I'm having some strange issues with files sizes from
    Share>Export Media
    I'm not changing anything about the video (just moving an audio track forwards and backwards ever so slightly to try and get it to the correct timing), nor am I changing anything about the way I export the video.
    I am always using the EXACT same settings
    Sometimes finder states my video is 1.15GB, sometimes its states its 3.8GB
    But then when I close Finder down and then go back into Finder again to find the file it states its gone from 1.15GB to 3.8GB
    I'm not sure if this is a error with my system or Final Cut Pro X?
    By the way I'm running 10.0.5
    Thanks

    Bob,
    Well, the issue has gone to press and I have upgraded to Snow Leopard and CS5. Initial tests show that the problem still exists, and that it is  related to the XML tags. The problem occurs both with legacy (CS4) documents and documents created from scratch in CS5. As I mentioned before, it only seems to happen when overrides are applied to paragraph styles.
    Here is a sidebar as exported from InDesign. Overrides were applied to the two headlines to modify color, point size and baseline shift:
    The file with XML tags, packaged and opened in InCopy CS5:
    The same file with XML tags removed, packaged and opened in InCopy:
    OK. Now is when things start to get really interesting.
    I thought perhaps that exporting the InDesign file as an IDML document, then reopening it, might perhaps fix the problem. But, no. In fact, when I reopened the IDML file in InDesign, the font styles were broken in _exactly_ the same places as they were in InCopy. Apparently, whatever problem InCopy is having with the XML tags is being duplicated by the IDML export. (Do these processes share the same file format?)
    For example, here is a title page from the magazine as a screen grab in InDesign. Overrides were applied to the top headline on a line-by-line basis:
    The same file, exported as an IDML file and reopened in InDesign:
    As with InCopy, when the XML tags are removed, the IDML file reopens in InDesign just fine. Unfortunately, removing the XML tags is not a option. We need them to repurpose the content after it goes to press.
    This is a real bug, and for us it's a serious one. I'm surprised it hasn't come up before. Is there any way to draw this to Adobe's attention? I'd be more than happy to share any of these files if that would help.
    Steve

  • Exported mp3 file size is huge!

    Does anyone know how to control the size of an exported song? For a 5 minute track I'm getting a 60Mb MP3!! I'm guessing this is done by setting the a different bit rate for the exported song but can't find any options in Garageband to do this.
    With such huge file sizes it makes it difficult to share the song through my website.

    No, you're not getting a 60 MB MP3, but a 60 MB AIFF file, and that's the regular size for uncompressed audio files. The bitrate in GB is fixed, and you wouldn't want to change it. Instead, convert the file into an MP3 or AAC in iTunes.
    (Come back if you need help with doing that.)

  • InDesign - Export PDF file size

    Hey everyone. I use InDesign to create my resume for job apps and whatnot. I've found that many corporate sites only accept file sizes under a certain limit (usually 500kb or smaller). My resume is usually around 590-610kb. Is there any way that I can reduce the file size without losing significant quality, or even any?
    Cheers.

    rayzha wrote:
    So I need to d/l adobe acrobat?
    OK, so this sounds like you don't have a Creative Suite package, or perhaps you are using Creative Cloud and didn't install Acrobat Pro.
    The free Adobe Reader will not help you to optimize a PDF, you need the full, paid, Acrobat application. Uwe's suggestion to distill might get you a smaller PDF, but again, without Acrobat you won't have Distiller. There are a few freeware Distiller clones that would probably work for plain text, but I doubt there's much that can be done to bring the size down on a file that has nothing but text in it without removing the non-graphic disposables like metadata, and the embedded page thumbnails, which requires the optimizer.
    It occurs to me that one reason your exported PDF might be large is that ID always embeds fonts unless they are restricted. If you are using common system fonts that you know your viewer will have, you can distill PDF without embedding fonts and save a couple of bytes. I just pulled up a random page from a student paper, which has about seven fonts in use. The usage audit says they total a bit over 2mb.

  • Why Is "Export Small File Size" Large?

    Hi, I work in CS3.  Out of 100 brochures, I have two brochures that will not export to a small file size PDF. The settings for export are all the same.  What else should I be looking for?  The sizes are usually 1 MG.  These particular 2 brochures are 5 - 6 MG.  What can I look for to correct this?
    Thanks

    Small size is very dependent on the contents being exported to PDF. Images are readily compressed. Text and vector data isn't. Thus, if your content is primarily text and vector, it is very unlikely that the content can be compressed signficantly more via change of settings.
    Another factor that can relate to image compression is use of any duotones that use spot colors. Such images cannot be JPEG-compressed, only ZIP-compressed.
              - Dov

  • Exported JPEG file sizes

    A number of my images exported to JPEG have a larger file size than the original RAW file. My export is fairly basic, quality 100, color space sRGB, no resizing, no watermark. Anyone any idea why ? I thought JPEG were supposed to be compressed.

    Possibly because you are not setting an output resolution so light room is making a best interpolation.
    Try setting the dimensions you want or the dimension for the long edge and use a resolution of 300ppi for printing or 72 for uploading to the web.

  • Wrong file size on the timeline

    Whenever I import file to Premiere PRO CS3 it is in wrong size.For example,
    1 hour of avi when come to timeline shows only 2 min.
    Please can somebody help me,?
    File properties,
    File Path: E:\kostov\Untitled Clip 01.avi
    Type: MainConcept DV Pro
    File Size: 13.2 GB
    Image Size: 720 x 576
    Pixel Depth: 720
    Frame Rate: 25.00
    Source Audio Format: 48000 Hz - 16 bit - Stereo
    Project Audio Format: 48000 Hz - 32 bit floating point - Stereo
    Total Duration: 00:02:25:12
    Average Data Rate: 92.6 MB / second
    Pixel Aspect Ratio: 1.067
    Video: DV 25 Mbps - bottom field first - pulldown none
    Audio: 48000 Hz - 16 Bit - 2 Channels
    System,
    Motherboard: MSI K9N Platinum
    Basic Input Output Systme(BIOS): Default System BIOS
    Central Processing Unit(CPU) X 2
    AMD Athlon(tm) 64 X2 Dual Core Processor 3800+
    AMD Athlon(tm) 64 X2 Dual Core Processor 3800+
    Physical Memory X 2
    1024MB
    1024MB
    Hard Disk X 2
    Maxtor 6Y200P0 (190GB)
    MAXTOR STM3250820AS (233GB)
    Video Card: NVIDIA GeForce 7100 GS
    Monitor: Philips 107T5/F5/S5
    Audio Device: E-MU E-DSP Audio Processor (WDM)
    Everything is updated.
    Thanx,
    lestra

    Hey mister Millaard,
    I have problem because Premiere always use Mainconcept DV Pro codec when import file in my case.But I find solution:
    From
    C/Program Files/Adobe/Adobe Premiere Pro CS3/Plug-ins/en_US
    I remove
    ImporterMCDVCPRO file and now Premiere import avi files as MS-DV AVI.
    Maybe this can help somebody else.
    lestra

  • Lightroom export - original file with Lightroom modification data

    Hello, hello!
    I have imported a folder of, for arguments sake, some JPEGs, TIFFS, and DND photos into Lightroom, leaving the files in place, and just linking them to the Lightroom Catalogue's Library. I have then made a whole load of 'modifications' to the photos in Lightroom (the data for these modifications is stored in the Lightroom Catalogue file, right?).
    Can I now export some of the photos from Lightroom so that the file that comes out is in the same/different file format (e.g. JPEG/TIFF/DNG) and have the Lightroom modification data embedded (perhaps in the EXIF data) of the exported file? Can I then open this with a 'normal' program and have it show the original? Can I then open this with Lightroom/Photoshop (?) and it show the original with the modification data applied?
    Thanks a lot! :-))

    Can I now export some of the photos from Lightroom so that the file that comes out is in the same/different file format (e.g. JPEG/TIFF/DNG) and have the Lightroom modification data embedded (perhaps in the EXIF data) of the exported file?
    Yes, but you should not export. Just hit Ctrl/Cmd+S to Save Metadata. the metadata will be embedded into the files. Note that the actual image will not be altered. That is, if you view the jpeg in an external viewer you will not see the adjustments made in Lightroom. Only Adobe products can interpred those.
    Can I then open this with a 'normal' program and have it show the original?
    Yes.
    Can I then open this with Lightroom/Photoshop (?) and it show the original with the modification data applied?
    Yes. When you open in Photoshop and it's a non-RAW file (e.g. JPEG or TIFF), there's an option somewhere in Camera RAW to be used for opening non-RAWs. The point is, those have to pass through Camera RAW, rather than opened directly in Photoshop, for metadata to be interpreted properly.

  • LR3 Export jpg File Size Inaccurate

    I have a CR2 file 4752 x 3168 and 22.22 MB that I want to export to jpg. I select resolution of 72 with dimensions of 1024 x 683 (largest size of side is 1024) with a file limit of 150KB. I get a file that is 155 KB with the indicated dimensions/resolution. I set the maximum file size to 130 KB and get a file that is 155 KB. I have to set the limit at 100KB to keep the file size under 150KB. I can do the same thing in CS5 using the Save to Web without any problems.
    It should not be that difficult to convert and resize an image for web imports limits.

    Thank you. Maybe they will get everything corrected before they release 3.2 for production.
    Regards,
    Mike

  • Export smallest file size best quality

    Hi,
    I need to export a video and get the best quality with the smallest file size preferably under 100 mb. It's a 4 min video that's about 4 GB. Thanks in advance.
    Kerry

    See those links. Ignore Compressor application but all settings are available from FCE quicktime conversion.
    http://www.kenstone.net/fcphomepage/youtube_compressorgary.html
    http://www.kenstone.net/fcphomepage/you_tube_reduxgary.html
    http://www.kenstone.net/fcphomepage/you_tube_hdgary.html
    Michel Boissonneault

Maybe you are looking for