Replies: 9 comments 1 reply
-
|
anyone any idea about the upper question? |
Beta Was this translation helpful? Give feedback.
-
|
Hello @daverupp, sorry, this slipped off my to-do list. DNG files are actually small JPEGs, with the actual pixel data of the raw camera sensor hidden in some extra metadata. You can open them with anything that can read JPEG, but you'll just see the thumbnail. You might be able to read the files with imagemagick, if you configure it carefully. For example: But you'll probably need to poke about inside imagemagick to get it working. A better solution would be a libraw loader for libvips, as we've discussed elsewhere I think. |
Beta Was this translation helpful? Give feedback.
-
|
Hello @jcupitt I am getting a thumbnail, but it is super low-res... do I need to set another parameter ? with other dng formats (like from an iphone pro) it is working very good, and the thumbnail is in good quality... |
Beta Was this translation helpful? Give feedback.
-
|
Yes, you can't thumbnail DNGs, it just won't work. They are not standfard images, you have to use a specialized converter. |
Beta Was this translation helpful? Give feedback.
-
|
But funny thing is, for the iphone dng images in the first zip from the original post, it is working the same way and it looks good with the quality. |
Beta Was this translation helpful? Give feedback.
-
|
DNGs are just JPG images with the raw camera data hidden in a private field, so the thumbnail you get is as good as the DNG thumbnail. It sounds like your iphone is using a fairly large JPG as the main image, but the olympus is not. |
Beta Was this translation helpful? Give feedback.
-
|
Ahh ok. Thx for the quick answer. Maybe I have to use dcraw then for normal cameras and for the iphone ones just as it is. |
Beta Was this translation helpful? Give feedback.
-
|
Hello |
Beta Was this translation helpful? Give feedback.
-
|
A dedicated LibRaw loader is now available on the master branch (which will be part of the upcoming 8.18 release). |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello @jcupitt :-)
I wrote once a question about ProRAW format from the new iOS devices. I found out, that the format will be in the end a *.dng adobe raw format.
So, I am generating thumbnails out of it via the vipsthumbnail. that is working perfectly so far :)
What I tried out now was, to copy the dng to jpeg the same way I am doing it with *.heic to *.jpeg.
vips copy ship.heic ship_output.jpg
(see attached heic image)
That is working perfect. Also the exif infos are there etc...
When I try now the same thing with the *.dng file, I only get a very compressed jpeg without any exif info etc...
vips copy thing.dng thing_output.jpg
Do I have to copy the dng differently compared to the heic file to get a useable jpeg version?
thx a lot for your help.
Dave
images.zip
Beta Was this translation helpful? Give feedback.
All reactions