Найти - Пользователи
Полная версия: Как повернуть изображение на нужный градус с помощью PyQt?
Начало » GUI » Как повернуть изображение на нужный градус с помощью PyQt?
1
Leron
Как повернуть изображение на нужный градус с помощью PyQt?
poltergeist

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_()
Leron
Спасибо poltergeist
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB