def resizeImageWithQT(src, dest): pixmap = QtGui.QPixmap(src) pixmap_resized = pixmap.scaled(720, 405, QtCore.Qt.KeepAspectRatio) if not ...
確定! 回上一頁