arguments did not match any overloaded call: scaled(self, width: int, height: int, aspectRatioMode: Qt.AspectRatioMode = Qt.IgnoreAspectRatio, transformMode: Qt.TransformationMode = Qt.FastTransformation): argument 3 has unexpected type 'int' scaled(self, size: QSize, aspectRatioMode: Qt.AspectRatioMode = Qt.IgnoreAspectRatio, transformMode: Qt.TransformationMode = Qt.FastTransformation): argument 1 has unexpected type 'int'
时间: 2024-02-13 11:01:28 浏览: 352
这个错误是因为 `scaled()` 方法的参数类型不匹配。在 PySide/PyQt5 中,`scaled()` 方法有两种重载形式:
- `scaled(width, height[, aspectRatioMode=Qt.IgnoreAspectRatio, transformMode=Qt.FastTransformation])`
- `scaled(size[, aspectRatioMode=Qt.IgnoreAspectRatio, transformMode=Qt.FastTransformation])`
其中,第一个重载形式中的 `width` 和 `height` 参数应该是整数类型,而第二个重载形式中的 `size` 参数应该是 `QSize` 类型。
如果你想要缩放一个 `QPixmap` 或 `QImage` 对象,你可以将大小参数包装成 `QSize` 对象,如下所示:
``` python
from PyQt5.QtGui import QPixmap, QImage
from PyQt5.QtCore import Qt, QSize
# 使用 QPixmap 对象进行图像缩放
pixmap = QPixmap('image.png')
scaled_pixmap = pixmap.scaled(QSize(100, 100), Qt.KeepAspectRatio, Qt.SmoothTransformation)
# 使用 QImage 对象进行图像缩放
image = QImage('image.png')
scaled_image = image.scaled(QSize(100, 100), Qt.KeepAspectRatio, Qt.SmoothTransformation)
```
请注意,在 `scaled()` 方法中,`aspectRatioMode` 和 `transformMode` 参数都有默认值,因此你可以省略不必要的参数。
希望这可以帮助你解决问题。
阅读全文