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…
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…
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 =…
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,…