Questions tagged [exif-js]

JavaScript library for reading EXIF image metadata

github

https://github.com/exif-js/exif-js

syntax

EXIF.getData(img, function() {
  var allMetaData = EXIF.getAllTags(this);
});

demo

http://htmlpreview.github.io/?https://github.com/exif-js/exif-js/blob/master/example/index.html

49 questions
0
votes
2 answers

How universal is exif data in mobile phones?

I am making an app that uses exif.js https://github.com/exif-js/exif-js to read some exif data from the image the camera captures. The specific fields that I want is ImageWidth, ImageHeight, FocalLength, FocalLengthIn35mmFilm and Orientation. But I…
omega
  • 40,311
  • 81
  • 251
  • 474
0
votes
1 answer

How to stream mobile phone camera into html page live with overlay images on top and ability to get exif data?

In html5, I want to be able to grab a live feed from the phone camera and display it on the page with an overlay on top, it can be another div tag. But at the same time, be able to extract exif data from the image frames coming from the live feed…
omega
  • 40,311
  • 81
  • 251
  • 474
-2
votes
1 answer

Issues with EXIF Library in HTML

I have the code below, and no matter what I try I literally cannot get the exif data to show up I have no clue what is going on. This code is taken straight from the github of the exif-js library: https://github.com/exif-js/exif-js window.onload =…
aok
  • 3
  • 2
-2
votes
1 answer

exif.js using old file

I implemented an EXIF button in a gallery to read EXIF data using the well-known exif.js script from here. My image loads into a img0 img node, and then I use: function exif() { EXIF.getData(img0, function() { var model = EXIF.getTag(this,…
Luis A. Florit
  • 2,169
  • 1
  • 33
  • 58
1 2 3
4