QImage RGB32到QImage RGB24,某种图像效果不好

时间:2013-08-07 14:18:18

标签: c++ qt5 qimage

我尝试将带有RGB32的QImage转换为带有RGB24的QImage。 我的代码在这种情况下不起作用:

当图像在BMP标题中有另外1024个字节时,图像的大小为X * Y * 3 + 54 +未知的1024字节。

奇怪的是,如果图像分辨率为x ==分辨率y,则代码可以工作,例如:512x512或1024x1024。无论情况如何:当我在标题中有或没有额外的1024字节时。

如果BMP在标题中没有额外的1024字节,即使分辨率x与分辨率y不同,每个事情也能正常工作。我的代码:

QImage * img=new QImage("test.jpg");//load img as RGB32 32bit per pixel whatever the format of input

QImage * tmp_img=new QImage(img->width(),img->height(),QImage::Format_RGB888);// image dest 24bit per pixel

     uchar * ptr1=img->bits();
     uchar * ptr2=tmp_img->bits();

     for( int k1=0,k2=0;k1<img->width()*img->height()*4;k1+=4,k2+=3)//increment k1 by 4 because img format is RGB32
                                                  //increment k2 by 3 because tmp_img format is RGB888
     {
         ptr2[k2]=ptr1[k1];
         ptr2[k2+1]=ptr1[k1+1];
         ptr2[k2+2]=ptr1[k1];
     }

1 个答案:

答案 0 :(得分:2)

删除了旧答案。

为什么不简单地这样做:

QImage img2 = img->convertToFormat(QImage::Format_RGB888);