LR4 resizes .dng when I dont want it to

Exporting my .nef files to .dng after editing them see's them going from full size 4692x3108 to 1024x768. Why?? I can save as .tif ok no problem. Using win 7 and latest LR version 4. Any help appreciated.

You could go an alternative route to export: do a "Convert to DNG" inside Library module, but leave "Delete originals after successful conversion" unchecked.
This will create a 2nd file inside LR catalog, where you could check in metadata panel which pixel dimensions it has. If ok, grab this DNG. You can remove the missing DNG-file afterwards from your catalog-
Same would be achieved if you re-import the exported DNG for checking. Then you could see if indeed maybe your export settings could have dome some unintended damage.
Cornelia

Similar Messages

  • My ipod shuffles even when i dont want it to how do i correct this

    my ipod shuffles even when i dont want it to,  how do i correct this problem

    You most likely just have Shake to shuffle turned on.
    Shake can be disabled in two ways to prevent accidental activation of the feature:
    Setting the hold switch on the top of the iPod nano to on.
    Turn off the Shake feature by choosing Settings > Playback on iPod nano (4th and 5th generation). For iPod nano (6th generation), from the Home screen, tap Settings > Music and then tap the On/Off switch next to "Shake to Shuffle".

  • Problem with chapters playing when i dont want them to

    OK let me explain what I have going here. I have 4 timelines for seperate videos in my project. Each has a motion button on the main menu that will play each one independantly and then return to the main menu and a "play it all" button the will play them in order. Ok all that works fine except for one thing. I want to video that shows in my thumbnails on the main menu to be a seperate video than what is actually in the feature DVD so after searching the forum I found a solution that is working. What I did was to take the video I wanted to use for the thumbnails and add that to the end of each timeline as a new chapter and then added a poster frame to control what showed in the thumbnail.
    So to review.....each timeline had two chapters one that I want to show in the feature DVD and one that I do not.
    By using the end actions oneach of the first videos in each timeline I can get the DVD to play from the beginning and skip the video I dont want seen. However, .....and here is the reason for my post FINALLY....when i use the chapter skip on the preview it of course skips to the video I dont want shown.....the last video on each timeline. So instead of having 4 chapters I now have 8....4 of each i would like to not be accessable at all.
    Any way to to what I am wanting to do which essentially is tell Encore to skipthose chapters on the chapter skip button on the player??
    thanks for any help in advance!!!!!!!!!!!

    Unfortunately not, if you are using that workaround. I can offer two suggestions:
    1. Create your entire motion menu background (including the thumbnail animations) in Premiere or After Effects, then use that as a background video on your menu that is set up with buttons containing
    only subpicture layers (no other layers, including thumbnail layers).
    2. Keep your current workaround and add user operations to the timeline so that Next/Previous chapter navigation is prohibited.

  • Alphabetical playlists when I dont want them, any ideas?

    Ive got a new ipod Nano, and despite having the tracks in my playlists in the order I want on itunes my Nano keeps making them alphabetical when I add them to it, which I dont want. Any ideas?
    Many thanks in advance if you can help.
    Philip

    Unfortunately not, if you are using that workaround. I can offer two suggestions:
    1. Create your entire motion menu background (including the thumbnail animations) in Premiere or After Effects, then use that as a background video on your menu that is set up with buttons containing
    only subpicture layers (no other layers, including thumbnail layers).
    2. Keep your current workaround and add user operations to the timeline so that Next/Previous chapter navigation is prohibited.

  • Everytime I sync my computer puts all of my apps onto my iPhone when i dont want it to.

    Antime I sync my iPhone on my computer it puts all the apps on my computer (which came from my iPod Touch (4th generation)) but I don't want them to.

    You might need to uncheck "Automatically sync new apps" on the Apps tab of your iTunes sync settings, then make sure you only check the apps you want to have on your phone.  See "Losing Some Apps, Gaining Others After Syncing" here: http://gigaom.com/apple/itunes-101-multiple-devices-one-itunes-account/.

  • Script auto selects when i dont want it to

    me again sry so this script
    if (this.getField("race").value = "Human"){
    if (this.getField("gender").value = "Male"){
      var h_male = new Array ();
    h_male[0] = "bob";
    h_male[1] = "mathew";
    h_male[2] = "andrew";
    h_male[3] = "stephen";
    h_male[4] = "ben";
    var hm = math.floor(5*Math.random())
    this.getField("character name").value = h_male[hm];}
    else (this.getField("race").value = "Human")
    (this.getField("gender").value = "Female");{
      var h_female = new Array ();
    h_female[0] = "michelle";
    h_female[1] = "sarah";
    h_female[2] = "skye";
    h_female[3] = "kayla";
    h_female[4] = "louise";
    var hf = Math.floor(5*Math.random())
    this.getField("character name").value = h_female[hf];}
    now it sort of works the problem im having is that when i hit the random button it auto puts gender to male  and random selects from h_female not the h_male
    i might be wrong but i think its the (this.getField("gender").value = "Male") is writing to the field gender insted of reading it? if so how do i go about fixing it
    Message was edited by: darka2011

    Are you getting any errors in the JavaScript console?
    I have a message about a missing code block terminator ,"}".
    Once that is fixed, the  next message is about the reference to 'math' is not defined.
    Using the nested if:
    // array for random names
    var aNames = new Array();
    // clear the field
    event.value = '';
    // test for race
    if (this.getField("race").value == "Human"){
       // human chose
       // test for human gender
       if (this.getField("gender").value == "Male"){
          // human male gender
          // populate male names
          aNames = ["bob", "mathew", "andrew", "stephen", "ben"];
          event.value = aNames[Math.floor(aNames.length * Math.random())];
       }else if (this.getField("gender").value == "Female"){
          // human female gender
          // populate frmale names
          aNames = ["michelle", "sarah", "skye", "kayla", "louise", 'Zelda'];
          event.value = aNames[Math.floor(aNames.length * Math.random())];
       } else {
          // human not male or female
          event.value = "";
       // end human gender options
    } } else {
       event.value = '';
    }  // end race options
    Using the switch statement:
    // array for random names
    var aNames = new Array();
    if (this.getField("race").value != " " & this.getField("gender").value != " ") {
    switch(1) {
    case (this.getField("race").value == "Human" & this.getField("gender").value == "Male"):
       // human male gender
       // populate male names
          aNames = ["bob", "mathew", "andrew", "stephen", "ben"];
          event.value = aNames[Math.floor(aNames.length * Math.random())];
    break;
    case (this.getField("race").value == "Human" & this.getField("gender").value == "Female"):
       // human female gender
      // populate frmale names
          aNames = ["michelle", "sarah", "skye", "kayla", "louise", 'zelda'];
          event.value = aNames[Math.floor(aNames.length * Math.random())];
    break;
    default:
    // for all non-matched items
    app.alert('No match');
    break;
    } // end switch selections
    } else {
    event.value = '';
    } // end if race and gender not empty

  • Itunes opens when i dont want it too

    Ok i plug in my ipod to charge it and itunes flies up and it starts updating...how do i prevent that from happening?
    DELL   Windows XP  

    this happens because your iPod is set to auto-update and it is automatically going to open iTunes when you plug in your iPod to update it. So simply go to Prefrences --> iPod --> and check manually update this iPod.

  • Music Syncing When I Dont Want It

    I have the sync only selected playlist option on my iPhone and I've turned off the show music from itunes option but for some reason it still has random songs from albums I have purchased and it wont even be the whole album it'll be one or 2 or more songs and i downloaded the new update for ios7 and ive tried all sorts of ways to get rid of them but I cant seem to do it, any ideas?

    I had all sorts of problems with iTunes after updating to io7s (and 7.0.2).  I deleted and reinstalled iTunes (backing up my iPhone first), then restored my phone.  Restoring is a hasstle and takes time. However, everyting seems to work OK now.

  • When i create a new window, firefox Yanks me back to where i was and i dont want to be yanked back.

    i duplicate current pages by create new windows on a very frequent basis;
    to do this, i go to the top of the page that i want to duplicate and right-click and click on Open Link in New Window;
    I specifically want to duplicate the page i am on in another Window, not a new tab;
    Because
    Duplicating the current page to Open Link in New Tab, gives tabs on the top of my screen;
    Duplicating the current page to Open Link in New Window, gives 'tabs' on the bottom of my screen;
    I want 'tabs' to show on the bottom of my screen and to do that i have to Open Link in New Window;
    My question and What is happening, is that firefox is yanking me back to the page that i have just duplicated by right-clicking at the top of the page and clicking on Open Link in New Window;
    When i create the new Window, firefox yanks me back to the page that i just duplicated and i dont want to be yanked back to that page;
    I want to stay on the page that i just duplicated.
    I have tried changing the way tabs work in Options but nothing checked or unchecked results in the specific way i want to have new Windows open and STAY on that newly created Window and not be YANKED back to the window i duplicated.

    The original window did not have a Flash object, but does the window that hides itself contain a Flash object? That is the usual pattern for this bug in the plugin's protected mode feature.
    If you have not already tried disabling it, the following pages/posts provide different ways to do that:
    * Adobe support article under the heading "Last Resort": [http://forums.adobe.com/message/4468493#TemporaryWorkaround Adobe Forums: How do I troubleshoot Flash Player's protected mode for Firefox?]
    * Manual steps: https://support.mozilla.org/questions/968190?page=5#answer-509209
    * Batch file to automate the manual steps: https://support.mozilla.org/questions/982093#answer-518078
    Flash needs to completely unload from memory (restarting Firefox might help) before this would take effect.
    More history: [https://support.mozilla.org/questions/955659 Opening New Windows and Shockwave Flash]

  • I have created a projet on imovie and when I try to share it. it automaticall closes and shows an error.. what should I do.. I dont want to loose all my documents at all...?? its very urgent plss tell a solution to it as soon as ppossiblc

    I was working on my project on imovie and when I was trying to share it.. it automatically closes and shows an error... I have tried to do it so many times and it shows the same error again and again.. I dont want to loose the document at all.... I  facing too much problem plss help me plss its very urgrnt for me... plss help me :-(

    well no reply from the community. sniff- do i stink!? - probably a little bit. If i have lost all that data then I'm gonna really really pong.
    Any ways i have purchased a 1tb usb HDD and have managed to duplicate the dmg file onto it. however still unable to mount the **** thing. so now i have ordered disk warrior which will be in my possession tomorrow.
    fingers toes eyes crossed.

  • I create my apple id from my boyfriend macbook and its says that I have to review my itunes information , when I get to the credit card number info etc. Its keep asking me for that I dont have any credit card and I dont want to put any , what should I do?

    I create my apple id from my boyfriend macbook and its says that I have to review my itunes information , when I get to the credit card number info etc. Its keep asking me for that I dont have any credit card and I dont want to put any , what should I do?

    You cannot use that ID without a credit card. You did not create your account correctly. There is very specific way in which you must create your account if you do not want to use a credit card. If you don't have a credit card, you will have to start all over again.
    1. You will have to sign out of that ID before you can create a new one. Settings>iTunes & App Store>Apple ID>Sign out.
    2. You cannot use the email address that you used for the first ID that you created. You will need to use another email address now
    3. You have to download a free app in order to start the new Apple ID process.
    Read this before proceeding.
    http://support.apple.com/kb/HT2534

  • HT4061 my iphone 4 battery went dead then when i went to charge it the plug into itunes came up as its gone into recovery for some reason, itunes is only giving me the option to restore which i dont want to do as i have photos of my babys !! help me !!

    please help!! my iphone 4 battery died then when i tried to charge it the plug into itunes came up as my phone has gone into recovery mode for some stupid reason! i have tried tinyumbrella as itunes is giving me no other option but to restore, i dont want to restore as i have very important photos of my babies that i havnt backed up yet and CANT loose!! iv tried holding the 2 buttons intogether but that doesnt work either ! there is bound to be a way around this without loosing my photos. im tamping with apple, this shouldnt happen ! aswell as worring bout loosing all my photos and now i have no phone so am paying for a contract that doesnt even work . please please please helppppppp ! x

    If your phone is in recovery mode, all the data on it, including those photos, is already lost.  Leaving important photos on a phone for any length of time, such as baby pictures, as you've found out is a terrible idea.
    You've no option but to restore your phone.

  • HT4097 when i turned on my ipad it has the itunes logo on it.  It says it is in recovery mode and that i have to restore it. I dont want to lose my photos I  have stored on it. I tried the suggestions from above but nothing works. What can I do

    When I turned on my ipad the itunes logo is on it. I cant get to my home screen. I plugged it to my computer and went to the itunes and it states that the ipad is in recovery mode and that I have to do a restore. I have some important photos on it that I dont want to lose. Is there a way I can restore it without losing the photos. I tried the suggestions on this site but it dont work. My last resort is to restore it if I have to.  Also, when Im on the itunes site it does say that i can update on March 15th Can anyone help? Thanks

    Then you can select that backup to restore from if you want. If it is an old backup - then you will be restoring the iPad to the condition that it was on that date. You mentioned March 15 in your first post. If your only backup is from last year, then you will lose all of the photos that you have taken since then.
    When you post back, include details ...not just a one sentence statement. Its difficult to ascertain exactly what you are experiencing without specific details.

  • Hey everyone! i have a external hardrive i keep my itunes library of songs on and it wont sync with my ipod touch inless i copy and paste it into my ipod device when thats conected. i dont want all the songs on there only checked ones. help plz!!

    im having trouble with syncing my ipod touch with my itunes library that i keep on a external hardrive. when i plug up my external hardrive that has all my songs on it, it doesn't sync to my ipod correctly. i have to copy and paste the songs to my ipod device when its connected. i dont want all the songs on there and i want to be able to manually control whats on my ipod. and id like to take some songs off of the ipod also but i want them still in my itunes library though. i usually check the songs i want on the ipod but it isnt working that way maybe because its a external hardrive?? i never had a problem with past ipods with my library on itunes but i ran out of space on my computer and had to transfer all of the songs to my external hardrive. please someone help me!! i thought it would be simple! but it isnt the case! i plug up my hardrive then my ipod, i press sync and nothing gets transfered unless i copy and paste them to the ipod. even though it says ipod syncing in progress! this is really confusing! please help me!! sorry if this is jumbled up and confusing..

    Correct. When you update via iTunes all synced media that is not in your iTunes library will be lost.
    As IO said before:
    You can redownload most iTunes pruchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    I do not think it included audio books.

  • Does the ipod nano 7th gen work with Belkin Blue tooth In car hands free? Customer support said it did when I bought it, but the box doesn't say it does and I dont want to open it in case I have to return it.

    Does the ipod nano 7th gen work with Belkin Blue tooth In car hands free? Customer support said it did when I bought it, but the box doesn't say it does and I dont want to open it in case I have to return it.

    If the Belkin supports the A2DP (Stereo Bluetooth) profile then it will work.

Maybe you are looking for

  • Problem with sapehpi installer EHP4

    Hello consultants We have installed ERP 6.0,  now we trying  to start sapehpi installer(7.0)  and we have following problems: ./STARTUP jce_policy_zip=jce_policy-1_4_2.zip Checking if C   runtime is installed ... Unpacking jce_policy-1_4_2.zip to SAP

  • How to mount my startup HD

    My startup HD always appeared in desktop. But since I formatted it and installed Leopard again it doesn't mount automatically in desktop. How do I do to mount it in desktop?

  • Uploading data In Planner

    Is it possible to load data directly in a planning query? I know that changes can be done using planning functions and manually editing using an input-ready query. But is it possible to load data into a real-time query (like uploading a flat file, et

  • HT3964 My iMac doesn't give off a sound when powered on?

    I had my iMac serviced and they replaced the logic board, now I noticed when powering on, it doesn't give of a sound as before.  What could be wrong?

  • How to transfer files from iTalk lite to iTalk premium

    How to transfer file fr italk lite to premium