我想以不同的颜色绘制图标(仅一种颜色)。为此,我想导入一个单一的alpha纹理,然后在应用程序中将其与给定的颜色结合起来。

结果应该是,当alpha贴图的不透明度为0时,什么都不会绘制到背景上;而当不透明度为1时,应该绘制使用的颜色。

一种解决方案应该隐藏在QPainter中的某个位置,因为您可以手动设置“合成模式”(QPainter::setCompositionMode)。但是我没有让它像我想要的那样工作。

有人有主意吗?

提前致谢。

编辑:这是一张小图,解释了我想做什么。我想使用如图所示的Alpha-Map,然后使用颜色图层创建我的图标。重要的是,背景保持透明。

最佳答案

您可以像这样使用QPainter进行操作:

QColor color;
// set color value

// load gray-scale image (an alpha map)
QPixmap pixmap = QPixmap(":/images/earth.png");

// initialize painter to draw on a pixmap and set composition mode
QPainter painter(&pixmap);
painter.setCompositionMode(QPainter::CompositionMode_SourceIn);

painter.setBrush(color);
painter.setPen(color);

painter.drawRect(pixmap.rect());

// Here is our new colored icon!
QIcon icon = QIcon(pixmap);

这是我使用上面的代码(QPixmap.save()方法)得到的灰度图像和两个彩色图标:
icons

10-08 14:54