Aperture 3 will not read LX3 .dng files

I was a Lightroom user for the past several years, but have decided to give Aperture a try. I converted files from my Panasonic Lumix LX-3, Canon 5D Mark II, and Canon s90IS to .dng when they were imported into Lightroom. I no longer have the original RAW files.
I have imported these .dng files into Aperture 3. The two sets of Canon files import properly and our easily edited. The .dng files from the Panasonic Lumix LX3 do not import properly. I get the "unsupported image format" message on the thumbnail.
I have installed the latest Apple update that allows for support of the LX3.
This has happened on both my Mac Pro and Macbook Pro.
Is anyone else experiencing a similar issue?
Thanks,
Fred
Message was edited by: Fred Campagna

Hi Fred. Saw your post about this on dpreview, too. I'll repost my response here for other Apple folk.
I'm seeing this with DNGs from my G1, too. The problem seems to be that Aperture 3 lacks support for lens corrections in DNG.
It is probably not a problem with Linear DNGs -- though you'd have to check yours. Adobe forced Linear DNGs on G1 and LX3 users for only one version of DNG converter (5.4, if I remember right). After that, they figured out how to do lens correction inside regular raw DNGs -- the kind that Aperture supports.
Except that the lens correction in those DNGs seems to confuse Aperture 3. It's odd because for the G1 and LX-3, Aperture supports those same corrections in the native RW2 format. Let's hope it's a bug that the same corrections don't work in DNG.
In the meantime, there are a couple of options:
1. Wait for RW2 support. For the GF1, this is your best choice. And save those RW2 files! Extract your original RW2 files from the DNGs or pull them from a backup (you did embed the the RW2, right?). If you've shot with Panasonic micro 4/3 lenses, this is your best option.
2. If your DNGs were shot with legacy lenses, there is a good work-around. Only native Panasonic (and maybe Olympus) micro 4/3 lenses add the lens metadata. If you don't have that, the only thing keeping Aperture from recognizing your photos is the camera model name embedded in the DNGs. You can use something like exiftool to change it to one that doesn't do lens correction. Here's what I use to get my G1's legacy lens DNGs to work in Aperture 3. (This is not terribly dangerous, as exiftool can just as easily undo this change.)
exiftool -Model=DMC-L10 blah.dng
3. If your DNGs do have lens correction (as they must with the LX3) you could use a tool like DNGSanitize http://punainenkala.livejournal.com/588.html, which purports to strip the lens correction from the DNGs. This is a last-resort sort of thing to do, you will lose that lens correction data. You would probably also have to change the camera model name, as in option 2 (try DMC-FZ50 for the LX3). Keep backups. And, really, don't do this -- wait until the next release of Aperture when we'll find out if Apple intends to fix DNG support.
Whatever you do, test this with your DNGs -- especially if you're trying option 2 or (especially) 3. Just because option 2 works for me, that doesn't mean it will for you. And I've not had to try option 3. And pray you don't have linear DNGs, as only Adobe can help you then.
I can't believe that Apple would mess up DNG support this badly on purpose. In the meantime, please file a bug report to let Apple know that losing DNG support for these cameras is a big deal. You can do this from inside Aperture itself. Choose Aperture > Provide Aperture Feedback from the menu.
Here are the gory details, with links to helpful resources -- http://elstudio.us/notes-on-aperture-3-and-panasonic-gf1-rw2-and
Good luck! And let us know how it works out.

Similar Messages

  • Photoshop CS6 will not read my raw files

    I have both a Canon 5D Mark 3 and a Canon 70D and CS6 will not read my RAW files.  I have to convert them to DNG to work on them.  Suggestions?

    According to this Adobe help link, the 5D Mark III had support since Camera Raw version 7.1 and the 70D had support since version 8.2, which CS6 should support fully. (CS6 supports up to the latest Camera Raw, which is version 8.7 as of this post.)
    Is everything updated? (Help > Updates in Photoshop.)

  • I have iphoto '08 version with an imac osx 10.5.8. It will not read my RAW files  from my Nikon D800 - a very new model.How can I get it to read my RAW files?

    my somewhat old imac osx 10.5.8 with iphoto '08 will not read my RAW files from my new Nikon D800 camera - a new model on the market( 5 months or so). How can I get iphoto to read my RAW  files?

    iPhoto 08 would not read RAW files from that new a camera. You need to upgrade so you can get more up-to-date version of OS X and iPhoto. Another possiblity is see if iPhoto 11 will run on 10.5.8, if so you should update. You can also attempt to run Software Update and see if it finds a newer release of iPhoto 08 that supports newer RAW formats.

  • Air App will not read local text file using openAsync/readUTFBytes on user (non-admin) mode

    I am running an Air App I did for the desktop, from the actual installed executable already deployed in the machine (Not from Flash Pro / Flex dev. environment). For some reason the app will not read a text file stored in the same application folder unless I run my app as administrator from the OS.
    When I run the app as admin, or within the development environment it works fine. Maybe this is related to some security issue? I read the adobe air documentation, and this should work...
    I am using openAsync/readUTFBytes on user as shown here:
    var continueGamesConnection:FileStream();
    var continueFile:File = new File(File.applicationDirectory.resolvePath("continueGames.txt").nativePath.toString()); 
    continueGamesConnection.addEventListener(Event.COMPLETE, openSavedGames);
    continueGamesConnection.openAsync(continueFile, FileMode.UPDATE); 
    function openSavedGames(event:Event):void
         continueGamesConnection.removeEventListener(Event.COMPLETE, openSavedGames);
         var content:URLVariables = new URLVariables();
         var loadedContent:String = new String();
         loadedContent = continueGamesConnection.readUTFBytes(continueGamesConnection.bytesAvailable);
         content.decode(loadedContent); 
         variableX = content. variableX
         //etc, etc. 
         continueGamesConnection.close();
    By the way, I have also, tried using FileMode.READ, and others, and it still gives me the same problem. Only works if ran on admin mode or from the dev. environment.
    It's very frustrating, I tried reading other posts without any luck... What solutions do people use for this kind of problem?
    I have seen that you can set the app to run as admin somehow, and I guess that could work. However, this should work just fine, since it doesn't seem to violate any of the security APIs of Air. Seems like an overkill. But even so, how do I do that?
    You help is greatly appreciated!

    Thanks kglad.com. I will try this and see if it works. Can you check my code a bit to see if it's right?
    var continueFile:File = new File(File.applicationStorageDirectory.resolvePath("savedgames/continueGames.txt").nativePath.toString());
    Does this look right to work across all desktop OS?

  • I've installed Adobe Reader twice and it still will not read a PDF file. What's up?

    I've installed Adober Reader twice now and it still will not read a PDF. What's up?

    I have the same problem. Adobe Reader worked fine until the last few days. I run Windows 7 and all I get is a small black cross in the top left corner of the screen. I can open downloaded pdf files, but not anything new from the internet.
    I uninstalled and reinstalled the program and have run every type of scan I know of without any change.
    This seems to be a common and recent problem, so I would like to know what's being done about it.

  • Lightroom will not read sony ARW files

    I understood the latest version of Lightroom supported the recent Sony A7 series, whose RAW files are Sony's own ARW files. I have the latest Lightroom but it will not read these files.

    Here is a list of the Sony A7 series cameras that Lightroom supports, and the version of Lightroom required. The Lightroom versions are in the highlighted area.
    If you are certain you have the appropriate version of Lightroom installed, then provide more information. Can your operating system browser see the raw files? Have they been downloaded to your hard drive? What operating system are you using? What is the exact version of Lightroom?

  • Will not read D800 NEF files

    Lightroom will not read Nikon D800 NEF files.  I have updated lightroom twice,  first to 4.1 and second to 4.2 and in neither case would the files import.  I have read several forum entries that say these files are compatible with Lightroom and/or to update Lightroom.  Anyone have an answer?  This is getting really aggravating!

    Nikon Transfer is obsolete and should not be used.  The Transfer option of an up-to-date ViewNX2 should be ok.  I would hesitate to use something that tries to be very consumer friendly like Windows Photo Transfer in case it is extracting JPG previews from the NEFs instead of actually transferring the NEF files, unchanged, but if you can determine they are really raw files, not just JPGs or JPGs renamed to NEF, then it’s probably ok—the NEFs will be much larger than the JPGs so that’s a way to tell.  I think you should test with a few photos, waiting long enough to make sure you do actually get previews rendered in LR’s Import area.
    Personally I just use Windows Explorer and copy the files from my card in a card-reader to my local hard-drive then do an LR Add Import from there.  I use a codec-pack that allows Windows Explorer to let me see the JPG-previews that are embedded into the raw files so I am not copying blind.

  • Lightroom 5 will not read my card files

    lightromm 5 will not read my card files

    alvinc wrote:
    lightroom 5 will not read my RAW preview file , no images in preview file to copy.instead of image file states , preview file unavailable for this file
    Hi,
    Please provide more information ... such as:
    - What are you trying to do? e.g. "Trying to import images from CF Card I get this message"
    - What PC are you using? e.g. "Mac, PC, memory etc"
    It is quite a cryptic thread but it sounds like you are trying to import directly from a CF Card, if you are copy the images to the hard disk then import.

  • Photoshop will not read my RW2 files!

    I have Photoshop CS6 (it wont let me update it any higher) and I have upgraded to the RAW 7.1 but it still will not read RW2 files. Any suggestions?

    8.3 is the latest ACR for CS6  Go to Help > Update...
    or here:
    http://blogs.adobe.com/crawlspace/2011/03/keeping-photoshop-up-to-date.html#notconnected

  • CS6 will not read 70D raw files?

    OK. I just upgraded from a 60D to a 70D and I am so in love BUT my RAW file can not be read by my Photoshop CS6. Do I need to upgrade? Yes, normally the camera's come with their own EOS Utility image upload but my computer will not recognize that either.... HELP PLEASE!! I need to edit photo in RAW not JPEG!
    Thanks,
    ME

    In your case it would be Photoshop>About Plug-in>Camera Raw
    Click on words Camera Raw to display the version.
    Unfortunately, camera raw 8.4 won't work on mac os x 10.6.8, but camera raw 8.3 will and should open the canon 70D files
    Download this installer for camera raw 8.3 and see if it works:
    http://swupdl.adobe.com/updates/oobe/aam20/mac/PhotoshopCameraRaw7-7.0/8.3.52…

  • G5( DVD SP4) WILL NOT READ AC-3 Files

    I have spent more time and read more papers on Compressor and DVD P4 than on any other Apple software.
    I have encoded from FCP4.5 a 27 min project using compressor, all the settings seem fine and the visuals are good.
    I import the assets into DVD 4 and they import all ok and I get green lights on the asset log etc.
    In the timeline the visuals are ok but I cannot get the ac-3 Dolby to read at all.
    I have imported the pcm sound directly into DVD and it works fine as do Aiff files.
    I have updated all my software to check I have all the codecs etc and all is up to date.
    I have re-encoded the sound again and checked all the settings and the same thing happened. DVD S is not reading the dolby sound.
    The data seems to be there ok but the silence is deafening!!
    Confused Mick in Belfast
    G5 Dual Processor   Mac OS X (10.4.4)   140G Lacie Ext Firewire HD

    How are you monitoring your audio? Analogue or SP/DIF (optical output).
    Have you set your audio output preferences in the SImulator tab of your DVDSP preferences?
    Check your audio output settings in your "Audio MIDI Setup" utility as well.

  • Reader will not read my pdf files. after an automatic update the pdf files are not accessable.

    adobe automatic update to XI caused the reader of my pdf files to stop working. The reader tries to open -- the adobe reader window opens for a few seconds, nothing in the window is activated -- then the window automatically closes.
    I have uninstalled and reinstalled previous versions that used to work but the reader 9 and X now do the same thing. open, unactivated window after a few seconds the program then shuts down.
    I cannot open and read any pdf file on this computer.
    There are no error messages and everything seems normal. The program does not work properly.
    I have ran the windows diagnostic tools to no avail.
    This computer operates windows 7

    See if you can open the EULA.exe file in the folder that contains the install of Reader or Acrobat.

  • After reloading PS CS5 it will not read my RAW file

    i reloaded PS CS5 to my new computer and it will no longer read my RAW file. how can i make this happen?

    Its possible that camera raw needs updating.

  • My PSE will not read the raw files on my new Nikon D7100? Help?

    I bought a new camera and shoot in the RAW format (nef) and I can not open the files to edit them. Please help?

    http://forums.adobe.com/thread/1229570

  • Hello T5i cr2 will not read in cs5 or lightroom 3 ?

    Recently I purchased a Canon T5i and now I find my mac book pro , lightroom 3 and cs5 will not read the cr2 files from the T5i . They read cr2's from my T1i . How dow I fix this or is my camera not supported by any of these things ? Thanks , PS my mac is running snowleoperd 10.6

    Hi,
    T5i (700D) RAW support was introduced in Lightroom 5.3
    You have two options:
    1) Upgrade Lightroom
    2) Use the Adobe DNG converter to convert the CR2 files to a version supported by your copy of lightroom. (To find that just select a RAW file go to Library->Convert to DNG and see the version of Camera Raw supported.)

Maybe you are looking for

  • Handbrake Screen Size

    I made an interesting discovery on handbrake by accident last night. I put in Indiana Jones and the Temple of Doom before I went to bed, adjusted all the settings but forgot to adjust the screen size. I've done this before and I usually would have ju

  • Cisco AVpair

    Hi, I want to authenticate my pppoe clients using a radius server. PPPOE client sending a username and password as well as a Service Name (which is detected in Router debug as Service Tag <service name>. I want to send this Service Name (Service Tag)

  • Q: No daylight saving in waveform chart

    Hello, I'm lost: I have a large logfile (couple of years) and i wan't to display this with labview. The times i use are labview timestamps (seconds since 1 januari 1904 0:00 utc). Problem is when i plot them in a chart it displays them in my local ti

  • Agent logged out suddenly, reason code:50003

    Hi, We have icm 8.0(3) and cad 8. Sometimes, an agent (each time a different one) is logged out suddenly and he get the reason code: 50003 Please find attached a logout status report that is showing the agent using extension "7459" has been logged ou

  • Oracle10gR2 - TAF setup in RAC environment (Pls close this thread)

    Hi, I wish to setup TAF in my RAC environment. 1. Can I harness TAF advantages without doing any Application changes? 2. How much useful can TAF be if application changes are not done? Thank you. Regards.