Reputation: 111
when an image is taken, information such as;
is at times written within the image and can actually be retrieved for further usage. a live example is what Google plus does (you can see the screen shot below), if you are a chronic Tumblr fan, you might notice that tumblr is capable of that too. Now, how the do they do it?
Upvotes: 0
Views: 863
Reputation: 1
This information is available within the photo file as so-called "Exif data". You can learn more about how this works on this Wikipedia page: https://en.wikipedia.org/wiki/Exchangeable_image_file_format
An example implementation in JavaScript is https://github.com/exif-js/exif-js
Upvotes: 2