Trouble Exporting images in full size

I can't seem to export an image with the original file size. I have reset the export image size to original jpeg settings and every setting I can find and it still exports a small low resolution file.

The setting you are wanting to change is the "Size to" pull down menu,
Original size is the original size of the file as cropped, uncropped you get pixel for pixel or if you happen to crop in on a small area of the image you will only get a small file.
Fit within pixels, great for screen and video use, eg 1024x768 or 1920x1080 etc
Fit within inches/centimeters, great for preset print sizes and creating different presets for different printers, eg. 10"x10" this is where dpi comes into effect.
Percentage of original, smaller or larger.
note that these settings do not crop the image or change a 2:3 image to a16:9 image, rather they constrain the image to fit within the dimensions. eg, I have an album of images to go to 5"x7" prints, vertical and horizontals, first I have to crop to 5x7, then I export to a preset that is 7"x7" @300dpi, this contrains the exported images to 7"@300dpi (2100pixels) on the longest side.
Tony

Similar Messages

  • Trouble Exporting Images from Lightroom 3

    I am having trouble exporting images from Lightroom 3 with my User Presets. Error Message: The file could not be written. (1). It has always worked in the past but I just bought a new Mac and had everything transfered to it. Everything else seems to be workin fine. Any solutions?

    Sometimes on new computers, the permissions in certain folders are not set up to allow you (the only user) to write files. It's worth a check.

  • Not able to have images display full size?

    Hi, I'm having an issue with images in safari. When I browse photo galleries which have links to images in their full size (larger than the browser window) it always displays them scaled down. I used to be able to set it so that they would automatically display full size without having to manually click on them to scale them up. Now (version 3.0.4) I noticed that I simply cannot find a way to have them come up full size. I always, ALWAYS have to click on them. Normally it'd be no big deal but when you come across some friends photos that have 100+ pictures it gets very annoying and tiring. Is there any way I can get it back to normal where I click on a link to a large image and it shows up full size?!
    - Jordan

    THe basic answer is to export them to a desktop folder and access them form there
    for a comnplete discussion see TD's post here -- http://discussions.apple.com/thread.jspa?threadID=1199193&tstart=15
    Larry Nebel

  • Trouble exporting jpegs in reduced sizes from LR 5.3

    I often export images as small, low res jpegs (usually, but not always, from NEF files) for my customers' social media use.  Recently, no matter what dimensions or resolution I enter on the export page, LR still exports it a a full size jpeg.  I am using a MacBook Pro OS X 10.7.5 and subscribed to CC (PS and LR only) at the end of December although I was already using this version of LR.  How can I remedy the problem?
    Thanks!

    In case other readers need other options, this post has them all:
    http://feedback.photoshop.com/photoshop_family/topics/publish_service_harddisk_ignores_ima ge_sizing_resize_to_fit_short_edge_setting_when_source_image_is_a_dng_on_lightroom

  • Unable to scroll down when image is full size in the preview frame.

    Since the recent update to Premier Elements I am unable to use the 'down button' on the slider bar to scroll down to the next image when the image is at full size. I am still able to scroll up.

    First, check all your relevant System Preferences.
    Scroll bar prefs are in Appearance, mouse behaviour is in Keyboard & Mouse, and finally check the settings in Universal Access also.
    If all those check out, are you running a 3rd-party utility that might affect mouse / scroll behaviour? Use Activity Monitor to see everything that is running on your machine.

  • When clicking on images my imac takes me straight to the website the image is from insted of giving me the option to open the image in full size, what should I do to stop this?

    I have encountered an irritating problem in which my computer takes me straight to the image the website is from rather than give me the option to view it in full size. How can I prevent this from happening?

    When I do a search for an image in Google I click on a picture and see something like below:
    And then I click on the View Image button to see the picture in a new tab. That's been Google's normal behavior for quite a while.

  • Exporting image coordinates and size

    I'd like to be able to export image position and percentage size for all pictures in a document (the purpose is to import this information into a database to facilitate autocreation of the douments later on), I've done this before for Quark files by processing the report files but InDesign doesn't have this information. I'm working with InDesign CS5 on OSX and have very little experience of AppleScript - I've had quite a good browse around but to no avail, any help would be greatly appreciated.

    Generating a report for images has been done hundreds of times before But of course, never exactly the way you want it to.
    This Javascript is based on one I wrote for a similar request; it only needed minor tinkering to fit your purpose.
    app.activeDocument.viewPreferences.rulerOrigin = RulerOrigin.PAGE_ORIGIN;
    list = [];
    imgs = app.activeDocument.allGraphics;
    unitname = getCurrentUnit();
    for (i=0; i<imgs.length; i++)
    h = imgs[i].parent.geometricBounds[2] - imgs[i].parent.geometricBounds[0];
    w = imgs[i].parent.geometricBounds[3] - imgs[i].parent.geometricBounds[1];
    left = imgs[i].parent.geometricBounds[1];
    top = imgs[i].parent.geometricBounds[0];
    scale = roundMe(imgs[i].horizontalScale,1);
    // some fair rounding
    switch (unitname)
      case 'in':
       w = roundMe(w, 3);
       h = roundMe(h, 3);
       left = roundMe(left, 3);
       top = roundMe(top, 3);
       break;
      case 'cm':
       w = roundMe(w, 2);
       h = roundMe(h, 2);
       left = roundMe(left, 2);
       top = roundMe(top, 2);
       break;
      default:
       w = roundMe(w, 1);
       h = roundMe(h, 1);
       left = roundMe(left, 1);
       top = roundMe(top, 1);
    list.push (imgs[i].itemLink.name+'\t'+'('+left+','+top+')'+'\t'+w+' x '+h+' '+unitname+'\t'+scale+'%');
    // alert (list.join('\r')); exit();
    defaultFile = new File (Folder.myDocuments+"/"+app.activeDocument.name.replace(/\.indd$/i, '')+".txt");
    if (File.fs == "Windows")
    writeFile = defaultFile.saveDlg( 'Save report', "Plain text file:*.txt;All files:*.*" );
    else
    writeFile = defaultFile.saveDlg( 'Save report');
    if (writeFile != null)
    if (writeFile.open("w"))
      writeFile.encoding = "utf8";
      writeFile.write (list.join("\r")+"\r");
      writeFile.close();
    function roundMe(val,to)
    var t = 1;
    while (to-- > 0) t *= 10;
    return Math.round(val*t)/t;
    function getCurrentUnit ()
    switch (app.activeDocument.viewPreferences.horizontalMeasurementUnits)
      case MeasurementUnits.POINTS: return "pt";
      case MeasurementUnits.PICAS: return "pt";
      case MeasurementUnits.INCHES: return "in";
      case MeasurementUnits.INCHES_DECIMAL: return "in";
      case MeasurementUnits.MILLIMETERS: return "mm";
      case MeasurementUnits.CENTIMETERS: return "cm";
      case MeasurementUnits.CICEROS: return "c";
      case MeasurementUnits.AGATES: return "ag";
      default: alert ("Oh, come on!"); exit(0);

  • Trouble exporting photos with correct size

    I took some pictures of a friends daughter for her senior pictures and the school has very specific size requirements for photos submitted.  They state they have to be 2.5" high and 2.0" Wide and 300 resolution. 
    I set these dimensions in the export box under image sizing but when I go back to check the size after export it isn't correct.  The width came over correct but the height comes over at 1.976".  I've tried checking and unchecking the box "don't enlarge" and I get the same result. 
    I did crop the original photo. 

    Without seeing the photo, there's no way for us to tell. It may be you need to take another head shot with more "space" around it so the crop will work. Wedding photographers do this all the time, their initial photo has lots of unneeded "space" around the subject so that they can crop at various different aspect ratios.

  • IPhoto Not Displaying images in full-size, only thumbnails

    I have iPhoto 11.9.4.2 installed in iMac 27" running Mac OS 10.7.5.
    Up until last night iPhoto has been great. Last night I added about 100 images to my library which is a pretty typical update for me. The pics all transferred fine. All my exisiting and new images are visible in thumbnail mode, however when I 'click' on any one of my new or existing images so that I can view only that image in iPhoto, the image flashes up for 1 second then disappears. If I use my mouse or arrow keys I can go to the next image which again flashes up temporarily then disappears.
    When I adjst the 'zoom' on the lower left portion of the iPhoto window, I can see a very small version of the image I would like to see with a box/rectangle over the area that I assume would be visibile if I zoomed in what would normally be a full-sized image.
    Any ideas?

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • Trouble exporting non-standard frame size

    So I have to deliver a Quicktime that's 210w x 190h that will eventually be compressed for web posting. The source footage is DV/NTSC (720x480). I cut my initial sequence at those specs and then nested that into a 210x190 sequence and resized the nest to fit, maintaining aspect ratio (i.e. sides were cropped). But whenever I export to QT, the frame size is stretched horizontally when viewed on a computer monitor. I've tried exporting that sequence "with current settings", set the sequence to square pixels, exported as Animation or "none", exported using Compressor with every conceivable combination....all to no avail. They all spit out the same problem.
    Am I missing something?

    Thanks Tom, you clarified it .......  or at least something clicked in my brain.
    I was trying to set "Custom" when I created the new project.
    I didn't know, or had forgotten, that in the "error" window I could select "Custom".
    All is now well and FCP X 10.1.1 is pretty clever after all!
    There is one weird thing I'd like to mention.
    When I clicked on "Custom" the 960 x 600  frame dimensions appeared but the  frame rate was listed as 23.98p as shown in the screenshot below.
    So what's wrong with that?
    Well the clip is 30p  and I naturally thought I was going to end up with a project with an incorrect frame rate.
    Now here's the funny thing  .........  when I selected the project and viewed it in the Inspector it was the correct 30p
    So why was I given that worrying piece of misinformation.

  • How do I change the background colour to the viewing screen when I reduce the image below full size

    Currently the screen has a black border when I scroll to reduce the image size. Originally it may have beeen white. I may have altered the setting but I dont know what. Any suggestions please.
    The programme is Elements 8

    Right click on the screen, then select custom color.

  • Can't view images at full size

    I am a new Mac user and for some reason when trying to view jpg's with IPhoto the screne pops up but it does not have the image there. I can see them in the previewer but get an empty pop up window. I am using a Mac Pro 2.46 processors and 12gig of ram.

    fenenchy
    and recently did something to the folders so that I can no longer see the photos fulol size.
    It is strongly advised that you do not move, change or in anyway alter things in the iPhoto Library Folder as this can cause the application to fail and even lead to data loss
    Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library Folder allowing it to overwrite the damaged file. If not, then you'll need to create and populate a new library.
    To create and populate a new library:
    Note this will give you a working library with the same film rolls and pictures as before, however, you will lose your albums, keywords, books, calendars etc.
    Move the iPhoto Library Folder to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library Folder on your desktop and find the Originals folder. From the Originals folder drag the individual rolls to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library Folder on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.
    Regards
    TD

  • How to display Image in full size when clicked

    ImageIcon icon = new ImageIcon("C:\\Users\\Ajay\\Pictures\\volt6.jpg");
    ImageIcon icon1 = new ImageIcon("C:\\Users\\Ajay\\Pictures\\vlot9.jpg");
    ImageIcon icon2 = new ImageIcon("C:\\Users\\Ajay\\Pictures\\add.jpg");
    JLabel label = new JLabel();
    JLabel label1 = new JLabel();
    JLabel label2 = new JLabel();
    JPanel bPanel = new JPanel(new GridLayout(2,2,5,5));
    label1.setIcon(icon1);
    label2.setIcon(icon2);
    label.setIcon(icon);
    bPanel.add(label);
    bPanel.add(label1);
    bPanel.add(label2);
    This is the code i am using to add 3 images to a Panel.
    Now when i click on one of the 3 images that are displayed , i want that image to be displayed in a new window.
    Please helpme out.
    I am new to this programming ,any kinda advices are appreciated.
    ThankYou

    I am new to this programming ,any kinda advices are appreciated.you were given good advice regarding standard practices
    [http://forums.sun.com/thread.jspa?threadID=5331674&tstart=0]
    in ignoring the advice given, you decided it was better to waste more time of others,
    with your cross-posting, in your attempt to bludge some code.
    i am new to the programming ........all indications are that you will retain that title.....forever
    so can u explain in detail........anything less would be 'in one ear, and out both'

  • Can't open image in external editor, can't export images

    Greetings helpful Aperture experts,
    I've just finished transferring aperture from one computer to a replacement unit. Except for being slow on my previous g5, it worked flawlessly at every level. However, now that I've xferred, I can't open Aperture images with an external editor, nor can I export the images to my desktop. Any help along these lines will be gigantically appreciated.
    gaylon

    Thanks, ok, here is the info step by step:
    When I try to pick any raw image, I am not able to export from Aperture. When I go into the finder and select "show master" then I am able to export from aperture. However, it seems that I am not able to export an image full size. I selected export image to full size jpg to my desktop. Nothing happens except that the window that indicates the image is exporting is open and it says estimated time less than a minute. Yet, there is nothing happening. Additionally, before I transferred Aperture over to my new g5, I could right click an image and had the option to open an image with external editor. Now, no such menu item is apparent. An update, the menu box that lets me know that my image is exporting is still open but there has been no progress. It will just sit there forever, or until I force Aperture to quit. Here's another strange goings on: One of my folders of raw images appear to be pixelated and of very poor quality, even when viewing the masters. The images have already been published by the client in their annual report, so I know that what I am seeing on the screen is not reality. Should I just uninstall Aperture and reinstall? Also, what will this do to the thousands of images in my libraries? Thanks so much for your input and help. In no way am I an expert, but I've been successfully using Aperture since it came out. That was on my G5 dual processor mac with pre intel configuration. Now, these strange things are happening with my new replacement G5 with the Intel processors. Thanks again.
    gaylon wampler

  • Exporting full size Jpegs from DNG converted files

    Hi there
    I imported some RAW files into Lightroom 4, which I then copied/converted to DNG, then edited them. I now want to export them as full size, high-quality jpegs but I only seem to be able to export them at a maximum of about 800kb, which is far lower than full-size. Is this to do with first the conversion to DNG from RAW on the import? Am I best copying them from raw and not converting them to DNG at all? Next question is, will I have to import the original RAWs again and re-edit them to be able to export as full-size high quality jpegs or is there some way to not have to do them again? Many thanks, Sophie

    The curious thing is that when I try to export full size jpegs through the email function,
    Do you mean exporting through the e-mail the EXACT SAME photos that you were discussing above?
    Have you done any cropping of the photos? What is the size, in pixels, of one of these photos according to Lightroom? What is the size, in pixels, of the corresponding exported photo, according to your operating system?
    Can you show us screen captures of the export dialog box?
    At this time, I am not going to deal with the print at A4 size being pixelated, as printing introduces a lot of other places where something can go wrong. To see if the problem is in the export, I want to know if you look at the exported photo outside of Lightroom, does it appear pixelated or not?

Maybe you are looking for

  • Designing a crystal report

    Hi All, I have designed a crystal report in the following manner 1.the report is grouping the data by column1 and then by column 2  i.e               column1                       column2 2.the db object conatins nearly 70000 rows of data. 3.when the

  • HT201272 several of my purchased itunes songs have an exclamation point next to them, they will not play, How can I fix that problem??

    Hello,  Can someone assist me with trying to figure out how to locate previously purchased songs on my itunes library that are showing up with an exclamation point infront of the titile.  I try and play the song and i get a message stating that Itune

  • Select records based on formula field

    I have a formula field that I am trying to sort data by. I want to eliminate records that come up with a 0 in this formula field. I tried select expert, but it doesn't recognize the field.

  • Save to Ai file - "Reject everything outside the artboard"

    Hi! Spared a lot of time and sometimes trouble in their work if I could save files Ai with "Reject everything outside the artboard." Such things as styles, swatches, symbols, brushes, etc. tend to be heavy and Ai's complicated for the file. Such an o

  • Capabilites sample question

    Hello, I'm new to using Flash-Lite. I just got an xv6700 and I'm starting to make flash lite apps, coming from the Director world. I've made a few simple swfs that work fine. Anyway, I have the "capabilities.swf" from the Flash-Lite 1.1 CDK running o