TiffReadDefines Usage?
Posted: 2015-05-30T20:33:26-07:00
I would like to read some metadata tags from a TIFF file, such as 11A and 11B, XResolution and YResolution. Can this be done with Magick.NET? I've tried this (and a few variations), looking for a profile in the image, but I'm not having any success:
Is there a way to do this?
Code: Select all
Dim x As New ImageMagick.TiffReadDefines()
x.IgnoreExifPoperties = False
rs.Defines = x
Using img As New MagickImage("c:\ckh.tif", rs)