Leron
Май 11, 2008 11:07:50
Как повернуть изображение на нужный градус с помощью PyQt?
poltergeist
Май 11, 2008 12:59:08
import os
from PyQt4 import QtGui, QtCore
app = QtGui.QApplication()
w = QtGui.QLabel('Hello')
w.resize(800, 600)
image_fname = ('e:\\Images\\593.jpg')
matrix = QtGui.QMatrix()
matrix.rotate(45)
pix = QtGui.QPixmap(image_fname).transformed(QtGui.QTransform(matrix))
pix.save('%s_rotated.png' % (os.path.splitext(image_fname)))
w.setPixmap(pix)
w.show()
app.exec_()