gpt4 book ai didi

c++ - 在 Qt 中用像素图画笔画一条线?

转载 作者:太空狗 更新时间:2023-10-29 20:58:10 25 4
gpt4 key购买 nike

一段时间以来,我一直在使用 Qt/C++ 开发一个简单的绘画应用程序。

目前我正在使用 QPainter::drawLine() 来绘制,它工作正常。

我想做的是用像素图画笔绘图,这在某种程度上是我可以做到的。我可以使用 QPainterPath 和 QPainter::strokePath() 绘制单色填充像素图。我用带有像素图的画笔用笔在路径上描边。

如果您仍在阅读,我的问题是,如果我使用 QPen 和 QPainter::strokePath(),我会得到一 strip 有平铺画笔的线条。但我希望沿线绘制像素图。就像某些图像编辑器中基于图像的画笔一样。我可以使用 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;
}
}

关于c++ - 在 Qt 中用像素图画笔画一条线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28269713/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com