本文整理汇总了C++中magick::Image::colorSpace方法的典型用法代码示例。如果您正苦于以下问题:C++ Image::colorSpace方法的具体用法?C++ Image::colorSpace怎么用?C++ Image::colorSpace使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类magick::Image
的用法示例。
在下文中一共展示了Image::colorSpace方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: runtime_error
/*******************************************************************************
* Operations.
******************************************************************************/
ColorLevels::Statistics
ColorLevels::getColorLevels(
ColorLevels::Options options,
std::string imagePath,
Magick::Blob* blob)
{
Magick::Image image;
try {
image.read(imagePath);
} catch (Magick::Exception &e) {
throw std::runtime_error(e.what());
}
/* For simplicity, only support sRGB */
if (image.colorSpace() != Magick::sRGBColorspace)
throw std::logic_error("Unsupported colorspace");
/* Convert sRGB to Lab colorspace */
image.colorSpace(Magick::ColorspaceType::LabColorspace);
ColorLevels::Statistics imageStats;
imageStats.width = image.size().width();
imageStats.height = image.size().height();
imageStats.redPixels = 0;
imageStats.purplePixels = 0;
imageStats.backgroundPixels = 0;
const Magick::PixelPacket *pixels = image.getConstPixels(
0, 0, imageStats.width, imageStats.height);
/* Setup image masks */
Magick::Image maskTransparentImage, maskOriginalImage;
Magick::PixelPacket *maskTransparentPixels, *maskOriginalPixels;
if (options.drawMaskOverTransparent) {
maskTransparentImage = Magick::Image(Magick::Geometry(
imageStats.width, imageStats.height),
Magick::Color("rgba(0,0,0,0)"));
maskTransparentPixels = maskTransparentImage.getPixels(0, 0,
imageStats.width, imageStats.height);
}
if (options.drawMaskOverOriginalImage) {
maskOriginalImage = Magick::Image(imagePath);
maskOriginalPixels = maskOriginalImage.getPixels(0, 0,
imageStats.width, imageStats.height);
}
/* Sanity check color coordinates */
if (options.redCoordinateSet) {
if (options.redCoordinate.x >= imageStats.width)
throw std::runtime_error("Invalid red X value.");
if (options.redCoordinate.y >= imageStats.height)
throw std::runtime_error("Invalid red Y value.");
}
if (options.purpleCoordinateSet) {
if (options.purpleCoordinate.x >= imageStats.width)
throw std::runtime_error("Invalid purple X value.");
if (options.purpleCoordinate.y >= imageStats.height)
throw std::runtime_error("Invalid purple Y value.");
}
if (options.backgroundCoordinateSet) {
if (options.backgroundCoordinate.x >= imageStats.width)
throw std::runtime_error("Invalid background X value.");
if (options.backgroundCoordinate.y >= imageStats.height)
throw std::runtime_error("Invalid background Y value.");
}
/* Setup colors */
const ColorLevels::LAB red = options.redCoordinateSet ?
ColorLevels::LABColorToLAB(static_cast<Magick::ColorRGB>(
pixels[(imageStats.width * options.redCoordinate.x) +
options.redCoordinate.y])) :
ColorLevels::getLABValueOfRGBColor(
Magick::ColorRGB(options.redColor));
if (options.redCoordinateSet && options.verbose)
std::cout << "Red color: " << red << std::endl;
const ColorLevels::LAB purple = options.purpleCoordinateSet ?
ColorLevels::LABColorToLAB(static_cast<Magick::ColorRGB>(
pixels[(imageStats.width * options.purpleCoordinate.x) +
options.purpleCoordinate.y])) :
ColorLevels::getLABValueOfRGBColor(
Magick::ColorRGB(options.purpleColor));
if (options.purpleCoordinateSet && options.verbose)
std::cout << "Purple color: " << purple << std::endl;
const Magick::ColorRGB redMaskColor("#00FF00");
const Magick::ColorRGB purpleMaskColor("#0000FF");
const Magick::ColorRGB backgroundMaskColor("#000000");
/* backgroundColor() returns an sRGB value, even in LAB colorspace */
const ColorLevels::LAB backgroundColor =
options.backgroundCoordinateSet ?
ColorLevels::LABColorToLAB(static_cast<Magick::ColorRGB>(
pixels[(imageStats.width * options.backgroundCoordinate.x) +
options.backgroundCoordinate.y])) :
ColorLevels::getLABValueOfRGBColor(
options.backgroundColor == "" ? image.backgroundColor() :
Magick::ColorRGB(options.backgroundColor));
if ((options.backgroundCoordinateSet ||
options.backgroundColor == "") && options.verbose)
std::cout << "Background color: " << backgroundColor <<
//.........这里部分代码省略.........
示例2:
void Magick::colorSpaceImage::operator()( Magick::Image &image_ ) const
{
image_.colorSpace( _colorSpace );
}