QPainter
のcompositionMode
プロパティを使用すると、ソースピクセルの色を読み取ることなく、このようなことを非常に簡単に行うことができます。
あなたの項目のpaint
方法に適応することができるはずカスタムpaintEvent
実装、と簡単なサンプルQWidget
:
#include <QtGui>
class W: public QWidget {
Q_OBJECT
public:
W(QWidget *parent = 0): QWidget(parent) {};
protected:
void paintEvent(QPaintEvent *) {
QPainter p(this);
// Draw boring background
p.setPen(Qt::NoPen);
p.setBrush(QColor(0,255,0));
p.drawRect(0, 0, 30, 90);
p.setBrush(QColor(255,0,0));
p.drawRect(30, 0, 30, 90);
p.setBrush(QColor(0,0,255));
p.drawRect(60, 0, 30, 90);
// This is the important part you'll want to play with
p.setCompositionMode(QPainter::RasterOp_SourceAndNotDestination);
QPen inverter(Qt::white);
inverter.setWidth(10);
p.setPen(inverter);
p.drawLine(0, 0, 90, 90);
}
};
この意志の出力以下の画像のようなもの:
もう1つの実験では、より興味深い効果を得るためにcomposition modesを試してください。
出典
2012-02-03 14:34:27
Mat
ありがとうございました。 –