libexif / exif

A small command-line utility to show EXIF information hidden in JPEG files
GNU Lesser General Public License v2.1
55 stars 22 forks source link

Support to view metadata for online image via url #15

Closed pakosaan closed 10 months ago

pakosaan commented 10 months ago

What the title says.

dfandrich commented 10 months ago

Anyone can use exif/libexif to create a service that does this. It's well outside the scope of the libexif project, though. If you're talking about adding support for URLs on the command-line, that's also out of scope. exif is a tool that follows the UNIX philosophy, and you can already do that by combining it with another tool to get a file from a URL. For example:

exif <(curl -L https://github.com/libexif/libexif/raw/master/test/testdata/canon_makernote_variant_1.jpg)

pakosaan commented 10 months ago

thank you appreciate it