我正在尝试实现泛洪填充算法,该算法在每次迭代时都需要获取区域中点的颜色。但即使我画了一些东西,所选点的颜色也总是背景颜色。
void MainWindow::floodFill(QPainter& p, int x, int y, const QColor& cu, const QColor& cc) {
st.push(QPair<int, int>(x, y));
//used for debug
int _r, _g, _b;
int _rCu, _gCu, _bCu;
int _rCc, _gCc, _bCc;
cu.getRgb(&_rCu, &_gCu, &_bCu);
cc.getRgb(&_rCc, &_gCc, &_bCc);
while (!st.isEmpty()) {
QPair<int, int> pair = st.pop();
QPixmap qPix = ui->centralWidget->grab();
QImage image(qPix.toImage());
QColor c(image.pixel(pair.first, pair.second));
//used for debug, here QColor c is always the same
c.getRgb(&_r, &_g, &_b);
if (c == cu || c == cc) {
continue;
}
p.setPen(cu);
p.drawPoint(pair.first, pair.second);
if (pair.first > 0) {
st.push(QPair<int, int>(pair.first - 1, pair.second));
}
if (pair.first < 200/*ui->centralWidget->width()*/) {
st.push(QPair<int, int>(pair.first + 1, pair.second));
}
if (pair.second > 0) {
st.push(QPair<int, int>(pair.first, pair.second - 1));
}
if (pair.second < 200/*ui->centralWidget->height()*/) {
st.push(QPair<int, int>(pair.first, pair.second + 1));
}
}
}
这就是我在绘画事件中所说的
void MainWindow::paintEvent(QPaintEvent* event) {
QPainter p(this);
QColor colorRed(255, 0, 0);
QColor colorBlack(0, 0, 0);
p.setPen(QPen(colorBlack));
p.drawRect(50, 50, 3, 3);
floodFill(p, 51, 51, colorRed, colorBlack);
}
答案 0 :(得分:0)
我认为问题在于:您将中央窗口小部件抓取到图像中,但是使用不同的绘图设备(主窗口本身)。但是,我不会在每个grab
来电中致电paintEvent
,但您可以尝试使用render
获取图片,这样:
QPixmap qPix(size());
render(&qPix);
QImage image(qPix.toImage());
请注意,您很可能会从Qt(Recursive repaint detected
)收到运行时警告,但只有一次。使用grab
会导致无限递归。