Qt修改图片的背景色及设置背景色为透明的方法

先上干货。

Qt下修改图片背景色的方法:

方法一:

QPixmap CKnitWidget::ChangeImageColor(QPixmap sourcePixmap, QColor origColor, QColor destColor)
{
QImage image = sourcePixmap.toImage();
for(int w = ;w < image.width();++w)
for(int h = ; h < image.height();++h)
{
QRgb rgb = image.pixel(w,h);
if(rgb == origColor.rgb())
{
///替换颜色
image.setPixel(w,h,destColor.rgba());
}
}
return QPixmap::fromImage(image);
}

这是非常暴力的方法,但是非常有用,经测试,位深度24及以上的图片都能被修改。

方法二:

QPixmap Widget::ChangeImageColor(QPixmap sourcePixmap, QColor origColor, QColor destColor)
{
QImage image = sourcePixmap.toImage();
uchar * imagebits_32;
for(int i =; i <image.height(); ++i)
{
imagebits_32 = image.scanLine(i);
for(int j =; j < image.width(); ++j)
{
int r_32 = imagebits_32[j * + ];
int g_32 = imagebits_32[j * + ];
int b_32 = imagebits_32[j * ];
if(r_32 == origColor.red()
&& g_32 == origColor.green()
&& b_32 == origColor.blue())
{
imagebits_32[j * + ] = (uchar)destColor.red();
imagebits_32[j * + ] = (uchar)destColor.green();
imagebits_32[j * ] = (uchar)destColor.blue();
}
}
}
return QPixmap::fromImage(image);
}

相对开销小一点的方法,但在图片量不大的情况下,CPU处理起来都挺快。

原理都是替换指定像素区域的色码,但是Qt文档推荐方法一,相对开销较小。具体原理还有很多的,先贴出来,跟大家一起学习。有时候方法一无效,但是方法二有效,都可以试试。

图片背景色设为透明的方法:

///将指定图片的指定颜色扣成透明颜色的方法

QImage Widget::ConvertImageToTransparent(QImage image/*QPixmap qPixmap*/)
{
image = image.convertToFormat(QImage::Format_ARGB32);
union myrgb
{
uint rgba;
uchar rgba_bits[];
};
myrgb* mybits =(myrgb*) image.bits();
int len = image.width()*image.height();
while(len --> )
{
mybits->rgba_bits[] = (mybits->rgba== 0xFF000000)?:;
mybits++;
}
return image;
}

原理其实就是设置图片的alpha通道为0,即全透明。
这里有个注意点:
如果需要保存透明图片要注意选用支持alpha通道的图片格式,一般选用png格式。

原文链接:

Qt修改图片的背景色及设置背景色为透明的方法

上一篇:移动端页面去掉click点击 背景色变化


下一篇:如何让MP4 video视频背景色变成透明?