Search found 4 matches

by janko-m
2016-12-03T06:55:00-07:00
Forum: Users
Topic: Extracting EXIF data in JSON format
Replies: 3
Views: 8949

Re: Extracting EXIF data in JSON format

snibgo wrote:
janko-m wrote:Is it possible to retrieve only the EXIF data in JSON format?
I don't think so. However, this is quicker:

Code: Select all

convert image.jpg[1x1+0+0] json:
That's a great solution, and it has about the same speed as fetching the EXIF data directly. Thanks!
by janko-m
2016-12-02T21:16:11-07:00
Forum: Users
Topic: Extracting EXIF data in JSON format
Replies: 3
Views: 8949

Extracting EXIF data in JSON format

I've recently found out that you can fetch the `identify -verbose` data in JSON format by doing `convert image.jpg json:`, which is really cool! Currently I'm fetching EXIF information using `identify -format '%[EXIF:*]'`, since it's much faster than fetching all image data. However, it's not so ...
by janko-m
2014-09-24T11:54:15-07:00
Forum: Bugs
Topic: Commands without images returns exit code 1
Replies: 2
Views: 2702

Re: Commands without images returns exit code 1

That was quick! Thanks a lot :)
by janko-m
2014-09-24T11:06:07-07:00
Forum: Bugs
Topic: Commands without images returns exit code 1
Replies: 2
Views: 2702

Commands without images returns exit code 1

Commands like these: identify -list command convert -help identify all return exit code 1. I think this shouldn't be the case, because no error has happened. They should return exit code 0. I'm developing a wrapper for ImageMagick, and I'm actually using "identify -list command" to dynamically ...