我正在尝试使用 QImage 为 QT 渲染自定义图像,但到目前为止我的代码没有任何进展。我不想从文件中加载图像,我想使用 QImage 类和 QBrush 类以及这需要什么。我不擅长在 API 中进行渲染,但我将不胜感激。
这是我得到的。我真正得到的唯一东西是图像'm_pImage'对象......
m_pImage = new QImage(ImageWidth, ImageHeight, QImage::Format_Indexed8);
m_pImage->setColorCount(255);
另外,我尝试添加一些类似的东西,但这部分不起作用:
QBrush* br = new QBrush(Qt::gray, Qt::Dense3Pattern);
br->setTextureImage(*m_pImage);
QPainter* paint = new QPainter(m_pImage);
paint->setPen(Qt::NoPen);
paint->setBrush(*br);
paint->drawRect(0, 0, ImageWidth, ImageHeight);
for(int i = 0; i < m_ulImageWidth; i++)
{
for(int j = 0; j < ImageHeight; j++)
{
m_pImage->setPixel(i, j, qRgb(255, 255, 255));
}
}
设置背景图像会更好,但在这两种情况下,仅让此图像呈现画笔样式 Dense3Pattern 将是最好的。
这是我一直在使用QT Reference的文档的链接
提前致谢!!