从 std::vector 中存储的数据创建和保存图片

Creating and saving a picture from data stored in std::vector

Qt 中有没有一种方法可以根据存储在 std::vector 中的数据轻松创建图片?我的意思是,在矢量中,我正在用 QPainter 绘画的 QWidget 的每个 QPointF 点都有颜色,但我不仅需要在QWidget 使用矢量中的颜色,但也将其保存为图片。

如果您知道图像的初始尺寸并且有一个包含颜色信息的向量,您可以执行以下操作:

// Image dimensions.
const int width = 2;
const int height = 2;
// Color information: red, green, blue, black pixels
unsigned int colorArray[width * height] =
                    {qRgb(255, 0, 0), qRgb(0, 255, 0), qRgb(0, 0, 255), qRgb(0, 0, 0)};
// Initialize the vector
std::vector<unsigned int> colors(colorArray, colorArray + width * height);

// Create new image with the same dimensions.
QImage img(width, height, QImage::Format_ARGB32);
// Set the pixel colors from the vector.
for (int row = 0; row < height; row++) {
    for (int col = 0; col < width; col++) {
        img.setPixel(row, col, colors[row * width + col]);
    }
}
// Save the resulting image.
img.save("test.png");