Reading a remote image using JavaScript and retrieving its metadata

I want to read XMP metadata of a JPEG file in JavaScript. I found a way for PHP ( How can I read XMP data from JPG with PHP? ), And we can easily adapt it to JavaScript using AJAX, but the problem is this: what about remote images that are not on our server?

thank

+3
source share
1 answer

The starting point for reading image metadata using javascript is the exif-js library I found on github.

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

The bad part is that it focuses only on Exif, while XMP information will not be read.

0
source

All Articles