More attempts to fix DPX log/lin problems; see comments and #1123.
[dcpomatic.git] / src / lib / magick_image_proxy.cc
index d207e0561de2eb33967434a6edc19c7436c75412..55795910553f422564fe2656cdb76632aac247e9 100644 (file)
@@ -43,7 +43,7 @@ MagickImageProxy::MagickImageProxy (boost::filesystem::path path)
        boost::uintmax_t const size = boost::filesystem::file_size (path);
        FILE* f = fopen_boost (path, "rb");
        if (!f) {
-               throw OpenFileError (path);
+               throw OpenFileError (path, errno, true);
        }
 
        uint8_t* data = new uint8_t[size];
@@ -67,7 +67,7 @@ MagickImageProxy::MagickImageProxy (shared_ptr<cxml::Node>, shared_ptr<Socket> s
 }
 
 shared_ptr<Image>
-MagickImageProxy::image (optional<dcp::NoteHandler>) const
+MagickImageProxy::image (optional<dcp::NoteHandler>, optional<dcp::Size>) const
 {
        boost::mutex::scoped_lock lm (_mutex);
 
@@ -102,6 +102,18 @@ MagickImageProxy::image (optional<dcp::NoteHandler>) const
                throw DecodeError (String::compose (_("Could not decode image file (%1)"), error));
        }
 
+       unsigned char const * data = static_cast<unsigned char const *>(_blob.data());
+       if (data[801] == 1) {
+               /* The transfer characteristic in this file is "printing density"; in this case ImageMagick sets the colour space
+                  to LogColorspace.  Empirically we find that if we subsequently call colorSpace(Magick::RGBColorspace) the colours
+                  are very wrong.  To prevent this, set the image colour space to RGB to stop the ::colorSpace call below doing
+                  anything.  See #1123 and others.
+               */
+               SetImageColorspace(magick_image->image(), Magick::RGBColorspace);
+       }
+
+       magick_image->colorSpace(Magick::RGBColorspace);
+
        dcp::Size size (magick_image->columns(), magick_image->rows());
 
        _image.reset (new Image (AV_PIX_FMT_RGB24, size, true));