QImage :: fill(Qt :: red)总是黑色?

时间:2015-09-17 07:58:00

标签: c++ qt user-interface colors qimage

我想知道QImage是如何工作的。首先,我只想创建一个400x400像素的QImage并尝试将其填充为红色。好的QImage已经填满但黑色...... 我也想创建一个单色的QImage。一种颜色应该是透明的,另一种颜色应该是其他颜色(例如:红色)。我怎样才能做到这一点?我尝试使用setcolor,但这似乎不起作用......

scene = new QGraphicsScene(this);
ui.graphicsView->setScene(scene);
QImage *image = new QImage(400, 400, QImage::Format_Indexed8); //QImage::Format_Mono);
image->fill(Qt::red);
//image->setColor(1, Qt::transparent);
//image->setColor(0, Qt::red);
scene->addPixmap(QPixmap::fromImage(*image));

2 个答案:

答案 0 :(得分:4)

简答:

Format_RGB32构造函数中使用Format_Indexed8代替QImage

详细答案:

Format_Indexed8使用手动定义的颜色表,其中每个索引代表一种颜色。您必须为您的图像创建自己的颜色表:

QVector<QRgb> color_table;
for (int i = 0; i < 256; ++i) {
    color_table.push_back(qRgb(i, i, i)); // Fill the color table with B&W shades
}
image->setColorTable(color_table);

您也可以手动设置当前颜色表的每个索引:

image->setColorCount(4); // How many colors will be used for this image
image->setColor(0, qRgb(255, 0, 0));   // Set index #0 to red
image->setColor(1, qRgb(0, 0, 255));   // Set index #1 to blue
image->setColor(2, qRgb(0, 0, 0));     // Set index #2 to black
image->setColor(3, qRgb(255, 255, 0)); // Set index #3 to yellow
image->fill(1); // Fill the image with color at index #1 (blue)

如您所见,Format_Indexed8像素值表示 RGB颜色,但索引值(表示您在颜色表中设置的颜色)。

Format_Mono是另一种使用颜色表的格式(请注意,其中只允许使用两种颜色)。

补充答案:

  

一种颜色应该是透明的,另一种颜色应该是其他颜色(例如:红色)。

如果我正确地理解了您,此代码将按您的要求执行:

// Create a 256x256 bicolor image which will use the indexed color table:

QImage *image = new QImage(256, 256, QImage::Format_Mono);

// Manually set our colors for the color table:

image->setColorCount(2);
image->setColor(0, qRgba(255, 0, 0, 255)); // Index #0 = Red
image->setColor(1, qRgba(0, 0, 0, 0));     // Index #1 = Transparent

// Testing - Fill the image with pixels:

for (short x = 0; x < 256; ++x) {
    for (short y = 0; y < 256; ++y) {
        if (y < 128) {
            // Fill the part of the image with red color (#0)
            image->setPixel(x, y, 0);
        }
        else {
            // Fill the part of the image with transparent color (#1)
            image->setPixel(x, y, 1);
        }
    }
}

答案 1 :(得分:2)

原因是你传递给构造函数的QImage::Format。使用例如QImage::Format_RGB32获取接受颜色的图像。

要使用图像格式,您需要使用setColor方法,如图所示here用于8位大小写。

QImage image(3, 3, QImage::Format_Indexed8);
QRgb value;

value = qRgb(122, 163, 39); // 0xff7aa327
image.setColor(0, value);

value = qRgb(237, 187, 51); // 0xffedba31
image.setColor(1, value);

value = qRgb(189, 149, 39); // 0xffbd9527
image.setColor(2, value);

image.setPixel(0, 1, 0);
image.setPixel(1, 0, 0);
image.setPixel(1, 1, 2);
image.setPixel(2, 1, 1);

结果

enter image description here