gpt4 book ai didi

c++ - QPen 中的自定义破折号样式看起来很脏

转载 作者:行者123 更新时间:2023-11-30 05:06:04 30 4
gpt4 key购买 nike

我需要在 Qt 中使用 QPen 绘制虚线,并且我想使用 QPen::setDashPattern() 设置自定义虚线模式:

QPen pen;
pen.setColor(Qt::black);
QVector<qreal> dashes;
dashes << 1.0 << 8.0;
pen.setDashPattern(dashes);
pen.setCapStyle(Qt::RoundCap);
pen.setWidthF(1.02);
painter->setPen(pen);
...

我得到了我需要的模式,但线条看起来“脏”:一些破折号似乎比其他破折号更重:

enter image description here

只有在我不使用 setWidthF() 或将其与 setWidthF(1.0) 一起使用时,线条才会看起来干净均匀。但如果我稍微增加宽度,线条就会变质。是否可以使用自定义破折号和任意宽度获得干净均匀的线条?

最佳答案

已找到解决方案。这都是关于抗锯齿的。

使用:

painter->setRenderHint(QPainter::Antialiasing)

解决问题。

关于c++ - QPen 中的自定义破折号样式看起来很脏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48116341/

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