在 Qt 中用像素图画笔画一条线?
Drawing a line with a pixmap brush in Qt?
一段时间以来,我一直在使用 Qt/C++ 开发一个简单的绘画应用程序。
目前我正在使用 QPainter::drawLine() 绘图,效果很好。
我想做的是用像素图画笔绘图,这在某种程度上我可以做到。我可以使用 QPainterPath 和 QPainter::strokePath() 绘制单色填充像素图。我用带有像素图的画笔用笔描边路径。
如果您还在阅读,我的问题是,如果我使用 QPen 和 QPainter::strokePath(),我会得到一条带有平铺画笔的线条。但我希望沿线绘制像素图。就像某些图像编辑器中基于图像的画笔一样。我可以使用 drawRect() 来做到这一点,但这会将像素图分开。
如果你从我写的乱码中明白了我的问题,我如何用像素图画笔画线?
编辑:
这是我目前所做的:
void Canvas::mouseMoveEvent(QMouseEvent *event)
{
polyLine[2] = polyLine[1];
polyLine[1] = polyLine[0];
polyLine[0] = event->pos();
//Some stuff here
painter.drawLine(polyLine[1], event->pos());
}
这是我试过的:
void Canvas::mouseMoveEvent(QMouseEvent *event)
{
QPen pen(brush, brushSize, Qt::SolidLine, Qt::RoundCap, Qt::BevelJoin);
//Some stuff here
path.lineTo(event->pos());
painter.strokePath(path, pen);
//This creates a fine line, but with a tiled brush
}
为了沿着鼠标移动绘制像素图,我尝试了
void Canvas::mouseMoveEvent(QMouseEvent *event)
{
//Some stuff
QBrush brush(QPixmap(":images/fileName.png"));
painter.setBrush(brush);
painter.setPen(Qt::NoPen);
painter.drawRect(QRect(event->pos() - brushSize / 2, event->pos() - brushSize / 2, brushSize, brushSize));
//This draws the pixmaps with intervals.
}
没关系,我找到了解决方案here
接受的答案显示了如何沿路径重复绘制像素图。那太棒了。作为参考,我将在此处复制代码:
QPointF lastPosition, currentPosition;
qreal spacing;
void draw() {
QPainterPath path;
path.moveTo(lastPosition);
path.lineTo(currentPosition);
qreal length = path.length();
qreal pos = 0;
while (pos < length) {
qreal percent = path.percentAtLength(pos);
drawYourPixmapAt(path.pointAtPercent(percent)); // pseudo method, use QPainter and your brush pixmap instead
pos += spacing;
}
}
一段时间以来,我一直在使用 Qt/C++ 开发一个简单的绘画应用程序。
目前我正在使用 QPainter::drawLine() 绘图,效果很好。
我想做的是用像素图画笔绘图,这在某种程度上我可以做到。我可以使用 QPainterPath 和 QPainter::strokePath() 绘制单色填充像素图。我用带有像素图的画笔用笔描边路径。
如果您还在阅读,我的问题是,如果我使用 QPen 和 QPainter::strokePath(),我会得到一条带有平铺画笔的线条。但我希望沿线绘制像素图。就像某些图像编辑器中基于图像的画笔一样。我可以使用 drawRect() 来做到这一点,但这会将像素图分开。
如果你从我写的乱码中明白了我的问题,我如何用像素图画笔画线?
编辑: 这是我目前所做的:
void Canvas::mouseMoveEvent(QMouseEvent *event)
{
polyLine[2] = polyLine[1];
polyLine[1] = polyLine[0];
polyLine[0] = event->pos();
//Some stuff here
painter.drawLine(polyLine[1], event->pos());
}
这是我试过的:
void Canvas::mouseMoveEvent(QMouseEvent *event)
{
QPen pen(brush, brushSize, Qt::SolidLine, Qt::RoundCap, Qt::BevelJoin);
//Some stuff here
path.lineTo(event->pos());
painter.strokePath(path, pen);
//This creates a fine line, but with a tiled brush
}
为了沿着鼠标移动绘制像素图,我尝试了
void Canvas::mouseMoveEvent(QMouseEvent *event)
{
//Some stuff
QBrush brush(QPixmap(":images/fileName.png"));
painter.setBrush(brush);
painter.setPen(Qt::NoPen);
painter.drawRect(QRect(event->pos() - brushSize / 2, event->pos() - brushSize / 2, brushSize, brushSize));
//This draws the pixmaps with intervals.
}
没关系,我找到了解决方案here
接受的答案显示了如何沿路径重复绘制像素图。那太棒了。作为参考,我将在此处复制代码:
QPointF lastPosition, currentPosition;
qreal spacing;
void draw() {
QPainterPath path;
path.moveTo(lastPosition);
path.lineTo(currentPosition);
qreal length = path.length();
qreal pos = 0;
while (pos < length) {
qreal percent = path.percentAtLength(pos);
drawYourPixmapAt(path.pointAtPercent(percent)); // pseudo method, use QPainter and your brush pixmap instead
pos += spacing;
}
}