Search found 3 matches
- 2011-08-16T10:53:56-07:00
- Forum: Magick++
- Topic: Disable assert/abort
- Replies: 4
- Views: 20888
Re: Disable assert/abort
Cool, thanks. Hopefully that version will be added to the Ubuntu repositories at some point. For now, I'll grab it on my dev system. Thanks again!
- 2011-08-16T09:42:38-07:00
- Forum: Magick++
- Topic: Disable assert/abort
- Replies: 4
- Views: 20888
Re: Disable assert/abort
Thanks for the quick response. Grab the corrupt image here: http://busybin.com/corrupt.jpg. Yea yea, I'm goofy lookin' =)
- 2011-08-16T08:57:18-07:00
- Forum: Magick++
- Topic: Disable assert/abort
- Replies: 4
- Views: 20888
Disable assert/abort
Using magick++, is it possible to disable the assertions/aborts on corrupt image reads without modifying the library? It seems strange that the library would throw an exception and assert/abort. Image img; try { img.read(argv[1]); } catch (exception& ex) { cout << "Caught: " << ex.what() << endl ...