标签: python image-processing python-imaging-library transparency
有没有办法旋转RGBA图像,结果将更平滑。
我的意思是,底部的停车标志是原始图像,顶部是按(PIL)旋转:
img.rotate(angle)
还有其他内置函数吗?
答案 0 :(得分:1)
左上:
img.rotate(angle, resample=Image.BILINEAR, expand=True)
右上方:
img.rotate(angle, resample=Image.BICUBIC, expand=True)
原始底稿
基于@Dinesh评论