gpt4 book ai didi

qt - 检查 QImage 是否有 alpha channel

转载 作者:行者123 更新时间:2023-12-04 12:56:10 25 4
gpt4 key购买 nike

我想知道我加载的 QImage 是否包含 alpha channel 。我已经知道 QImage::hasAlphaChannel() 可以告诉我我使用的图像格式是否支持 alpha channel ,但是有没有办法知道它是否真的在加载的图像中使用?

最佳答案

这里有我的代码片段,用于检查是否真的使用了 alpha。当图像在 ARGB32 中时很有用.

bool useAlpha = false;
const uchar* pixelData = image.bits();
int bytes = image.byteCount();

for (const QRgb* pixel = reinterpret_cast<const QRgb*>(pixelData); bytes > 0; pixel++, bytes -= sizeof(QRgb)) {
if (qAlpha(*pixel) != UCHAR_MAX) {
useAlpha = true;
break;
}
}

还请记住有 format()方法。

关于qt - 检查 QImage 是否有 alpha channel ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6157286/

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