Hello, all.
(vb.net preferably)
I need to upload images and obtain the metadata from these images.
Now, the images are ones I've taken and will take in the future.
So, the data I am needed to obtain are Camera data.
An example of what I need is as follows.
Camera Maker - Canon
Camera model - Canon EOS 800D
F-stop - f/3.5
Exposer time - 1/30 sec.
ISO speed - ISO-100
Focal length - 18 mm
Resolution - 72
Dimensions - 2121 x 2497
And other types as well.
I already know how to upload images but not get the metadata; that part is what I am working on now.
Thanks for any assistance.
Wayne
You can find property id definition here : https://docs.microsoft.com/en-us/windows/win32/gdiplus/-gdiplus-constant-image-property-tag-constants
The Type is defined here : https://docs.microsoft.com/en-us/windows/win32/gdiplus/-gdiplus-constant-image-property-tag-type-constants
Values for the Type constants :
PropertyTagTypeByte = 1,
PropertyTagTypeASCII = 2,
PropertyTagTypeShort = 3,
PropertyTagTypeLong = 4,
PropertyTagTypeRational = 5,
PropertyTagTypeUndefined = 7,
PropertyTagTypeSLONG = 9,
PropertyTagTypeSRational = 10,