Extract EXIF without loading image contents

Magick++ is an object-oriented C++ interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning Magick++.
Post Reply
Yurik
Posts: 3
Joined: 2012-09-02T03:05:49-07:00
Authentication code: 67789

Extract EXIF without loading image contents

Post by Yurik »

Hello,

Can I extract an EXIF information from an image without actually loading the rest image information? I am working with huge raw files (e.g. 23Mb DNG raw files), which load quite slow, so would like to avoid superfluous operations in case when I only need EXIF.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Extract EXIF without loading image contents

Post by magick »

Not with ImageMagick. ImageMagick loads the image and only then can you extract any profiles.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Extract EXIF without loading image contents

Post by fmw42 »

try EXIFTOOL
Yurik
Posts: 3
Joined: 2012-09-02T03:05:49-07:00
Authentication code: 67789

Re: Extract EXIF without loading image contents

Post by Yurik »

magick wrote:Not with ImageMagick. ImageMagick loads the image and only then can you extract any profiles.
Thanks. Are you planning to add this feature? It looks very useful.
Yurik
Posts: 3
Joined: 2012-09-02T03:05:49-07:00
Authentication code: 67789

Re: Extract EXIF without loading image contents

Post by Yurik »

fmw42 wrote:try EXIFTOOL
Thanks! ExifTool looks very powerful. The only problem is that I am using .NET and would like to avoid third-party EXE, either .NET or C++ code.
Post Reply