先上乾貨。學習
Qt下修改圖片背景色的方法:測試
方法一:ui
QPixmap CKnitWidget::ChangeImageColor(QPixmap sourcePixmap, QColor origColor, QColor destColor) { QImage image = sourcePixmap.toImage(); for(int w = 0;w < image.width();++w) for(int h = 0; 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及以上的圖片都能被修改。spa
方法二:.net
QPixmap Widget::ChangeImageColor(QPixmap sourcePixmap, QColor origColor, QColor destColor) { QImage image = sourcePixmap.toImage(); uchar * imagebits_32; for(int i =0; i <image.height(); ++i) { imagebits_32 = image.scanLine(i); for(int j =0; j < image.width(); ++j) { int r_32 = imagebits_32[j * 4 + 2]; int g_32 = imagebits_32[j * 4 + 1]; int b_32 = imagebits_32[j * 4]; if(r_32 == origColor.red() && g_32 == origColor.green() && b_32 == origColor.blue()) { imagebits_32[j * 4 + 2] = (uchar)destColor.red(); imagebits_32[j * 4 + 1] = (uchar)destColor.green(); imagebits_32[j * 4] = (uchar)destColor.blue(); } } } return QPixmap::fromImage(image); }
相對開銷小一點的方法,但在圖片量不大的狀況下,CPU處理起來都挺快。code
原理都是替換指定像素區域的色碼,可是Qt文檔推薦方法一,相對開銷較小。具體原理還有不少的,先貼出來,跟你們一塊兒學習。有時候方法一無效,可是方法二有效,均可以試試。orm
圖片背景色設爲透明的方法:blog
///將指定圖片的指定顏色扣成透明顏色的方法圖片
QImage Widget::ConvertImageToTransparent(QImage image/*QPixmap qPixmap*/) { image = image.convertToFormat(QImage::Format_ARGB32); union myrgb { uint rgba; uchar rgba_bits[4]; }; myrgb* mybits =(myrgb*) image.bits(); int len = image.width()*image.height(); while(len --> 0) { mybits->rgba_bits[3] = (mybits->rgba== 0xFF000000)?0:255; mybits++; } return image; }
原理其實就是設置圖片的alpha通道爲0,即全透明。
這裏有個注意點:
若是須要保存透明圖片要注意選用支持alpha通道的圖片格式,通常選用png格式。文檔
原文連接: