I am attempting to pull the EXIF information for images that have values for the EXIF "keywords" attribute. I have successfully read EXIF information using mini_magick by simply opening an image and using:
image["EXIF:Model"]
For some reason, none of the following will return keywords for an image that I know has them:
image["EXIF:Keywords"]
image["EXIF:XPKeywords"]
image["EXIF:Subject"]
I have confirmed that the image in question does have this information using this utility: http://regex.info/exif.cgi
Does mini_magick only have access to certain EXIF values? It seems so odd that I can access certain EXIF information but not others.