我有以下小部件:
pixmap = QtGui.QPixmap(r'pics\cdaudio.png').scaled(100, 100)
图像从 256x256 缩小。它看起来很波涛汹涌:
如何在 Qt 中平滑地扩展它?
使用transformMode
参数:
pixmap = QtGui.QPixmap(r'pics\cdaudio.png').scaled(100, 100, transformMode=QtCore.Qt.SmoothTransformation)
根据@iTayb,这是我想出的:
// Scale the source to the requested size with
// the KeepAspectRatio as aspectMode & SmoothTransformation as mode
*source = source->scaled(width, height, Qt::KeepAspectRatio, Qt::SmoothTransformation);
target->setPixmap(*source);
如果可能的话,为什么不使用 SVG 格式(以及 Qt SVG 模块)?