gpt4 book ai didi

qt - QPainter::drawPixmap()看起来不好并且质量低劣?

转载 作者:行者123 更新时间:2023-12-04 13:26:59 29 4
gpt4 key购买 nike

我正在尝试使用QWidgetQPainter::drawPixmap()中绘制一个icon(.png)
:

QPixmap _source = "/.../.png";
painter.setRenderHint(QPainter::HighQualityAntialiasing);
painter.drawPixmap(rect(), _source);

但与 QLabel(例如)相比,且尺寸较小(在我的情况下为19 * 19),结果并不理想。

我能做什么?

****编辑****

pixmap @大小为19 * 19的 QLabel:

enter image description here

我的画通过 SmoothPixmapTransform @ size 19 * 19渲染类型:

enter image description here

最佳答案

您设置了错误的渲染提示,需要使用QPainter::SmoothPixmapTransform才能顺利调整大小。默认情况下,使用最近的邻居方法,该方法快速但质量很差并且像素化结果。
QPainter::HighQualityAntialiasing用于绘制线和填充路径等,即在光栅化几何图形时,它对绘制光栅图形没有影响。

编辑:似乎只有SmoothPixmapTransform可以做很多,并且当最终结果非常小时,它就不多了:

  QPainter p(this);
QPixmap img("e://img.png");
p.drawPixmap(QRect(50, 0, 50, 50), img);
p.setRenderHint(QPainter::SmoothPixmapTransform);
p.drawPixmap(QRect(0, 0, 50, 50), img);
img = img.scaled(50, 50, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
p.drawPixmap(100, 0, img);

此代码产生以下结果:

enter image description here

在第二张和第三张图像之间几乎没有任何区别,手动将源图像缩放到所需的尺寸并绘制它可以产生最佳效果。这当然是不对的,从 SmoothTransformation预期会产生相同的结果,但是由于某种原因,它的缩放程度不及 scale()QPixmap方法。

关于qt - QPainter::drawPixmap()看起来不好并且质量低劣?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36894246/

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