value;
value=color_;
- artifact("highlight-color",value);
+ artifact("compare:highlight-color",value);
}
void Magick::Image::iccColorProfile(const Magick::Blob &colorProfile_)
value;
value=color_;
- artifact("lowlight-color",value);
+ artifact("compare:lowlight-color",value);
}
void Magick::Image::magick(const std::string &magick_)
return(constOptions()->magick());
}
+void Magick::Image::masklightColor(const Color color_)
+{
+ std::string
+ value;
+
+ value=color_;
+ artifact("compare:masklight-color",value);
+}
+
double Magick::Image::meanErrorPerPixel(void) const
{
return(constImage()->error.mean_error_per_pixel);
void magick(const std::string &magick_);
std::string magick(void) const;
+ // When comparing images, mask pixel differences with this color.
+ void masklightColor(const Color color_);
+
// The mean error per pixel computed when an image is color reduced
double meanErrorPerPixel(void) const;