gpt4 book ai didi

c++ - "Magick++::readImages"当我调用它来解码 Blob 对象中的 png 图像时抛出警告

转载 作者:行者123 更新时间:2023-11-28 04:07:47 26 4
gpt4 key购买 nike

我使用 Magick++ 处理图像,下面的代码抛出一个警告:"Magick: iCCP: known incorrect sRGB profile () reported by coders/png.c:1105 (PNGWarningHandler)"

......
string img;
//assign image to this string(img)
std::list<Image> m_images;
......
Blob src_blob(image.data(), image.length());
readImages(&m_images, src_blob);//in this function throw a warning exception
if (!m_images.empty()) {
Image image = *(m_images.begin());
}
......

但是如果我这样构造图像:

Blob src_blob(image.data(), image.length());
Image image(src_blob);

代码可以正常工作,不会抛出异常

这张图片的名字:

$identify case1.png
case1.png PNG 800x800 800x800+0+0 8-bit sRGB 807280B 0.000u 0:00.004

(我必须使用readImages因为我可能会处理gif图像)

最佳答案

尝试以下...

std::list<Image> m_images;
// ...
ReadOptions opts;
opts.quiet(true);
Blob src_blob(image.data(), image.length());
readImages(&m_images, src_blob, opts);

ReadOptions.quiet 设置为 true 将在解码期间抑制任何警告。

// From `Magick::throwException` method.
if ((quiet_) && (severity < MagickCore::ErrorException))
{
delete nestedException;
return;
}

But if I construct Image like this:

Blob src_blob(image.data(), image.length());
Image image(src_blob);

the codes will work and no throw exception

这是因为构造函数辅助方法暂时设置了quiet以方便使用。

// From Image.cpp
Magick::Image::Image(const Blob &blob_)
: _imgRef(new ImageRef)
{
try
{
// Initialize, Allocate and Read images
quiet(true);
read(blob_);
quiet(false);
}
catch (const Error&)
{
// Release resources
delete _imgRef;
throw;
}
}

关于c++ - "Magick++::readImages"当我调用它来解码 Blob 对象中的 png 图像时抛出警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58407483/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com