是否可以使用PIL围绕不在图像中心的点旋转图像?
如果没有,你们可以向我推荐什么样的人来达到预期的行为?
答案 0 :(得分:0)
默认情况下,它绕图像的中心旋转,以回答评论者的问题。否则,您可以从左上角开始指定坐标。
from PIL import Image
im = Image.new("RGB", (100, 100))
resultIm = im.rotate(45, center=(25, 25))
有关文档,请参见https://pillow.readthedocs.io/en/5.2.x/reference/Image.html#PIL.Image.Image.rotate。