diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-08-14 22:55:06 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-08-14 22:55:06 +0100 |
| commit | 39c880731c36cffd8310ea536509313de9f5fbd6 (patch) | |
| tree | 50ab708f34c1808255842679f24bf740d7b97fd7 /src/lib/magick_image_proxy.h | |
| parent | bf9fee2e9e95b199aa35b005f980fcd3d345d613 (diff) | |
Give filename (where possible) when image file decoding fails.
Diffstat (limited to 'src/lib/magick_image_proxy.h')
| -rw-r--r-- | src/lib/magick_image_proxy.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/magick_image_proxy.h b/src/lib/magick_image_proxy.h index 7d2b69afe..62f3afa2e 100644 --- a/src/lib/magick_image_proxy.h +++ b/src/lib/magick_image_proxy.h @@ -42,6 +42,10 @@ public: private: Magick::Blob _blob; + /** Path of a file that this image came from, if applicable; stored so that + failed-decode errors can give more detail. + */ + boost::optional<boost::filesystem::path> _path; mutable boost::shared_ptr<Image> _image; mutable boost::mutex _mutex; }; |
