Reputation: 2224
I'm trying to write a partial Java (err... scala) wrapper to ImageMagick convert utility. I was wondering if the exit codes of the command are documented somewhere, or available in a single C / C++ file. I can't go over the entire code base at the moment. I've got a similar error code list for ImageMagick, was wondering if there was an equivalent in GraphicsMagick. Any pointers will be appreciated. Thank you.
Upvotes: 2
Views: 383
Reputation: 1382
The below is quoted verbatim from an email reply from the key maintainer of graphicsmagick, Bob Friesenhahn.
"It returns only the simple values 0 (EXIT_SUCCESS) or 1 (EXIT_FAILURE). Being highly portable software, it does not do anything fancy."
Upvotes: 1