1 from PIL import Image
2 im=Image.open("monkey.jpg")
3 i=0
4 while i<3:
5 i=i+1
6 im=im.rotate(90) #rotate(x)表示逆时针旋转x度
7 im.show()
微信扫码预览、分享更方便