Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any gem to read exif data from png images

Tags:

ruby

iphone

exif

I am uploading png images from iphone. I would like to read the gps information from the image. I am using EXIF Reader(GitHub) but it works only for gif and tiff format.

Any solution to read Exif data from png images will be useful

like image 818
Dhepthi Avatar asked Oct 10 '22 16:10

Dhepthi


1 Answers

exiftool supports PNG, and there are rubygems wrapping it:

  • multi_exiftool
  • mini_exiftool

I'm not sure what the difference between these two are, though.

like image 95
Frost Avatar answered Oct 13 '22 10:10

Frost