PIL image。旋转透明

时间:2018-10-08 15:10:28

标签: python image-processing python-imaging-library transparency

有没有办法旋转RGBA图像,结果将更平滑。 enter image description here

我的意思是,底部的停车标志是原始图像,顶部是按(PIL)旋转:

img.rotate(angle)

还有其他内置函数吗?

1 个答案:

答案 0 :(得分:1)

enter image description here

左上:

img.rotate(angle, resample=Image.BILINEAR, expand=True)

右上方:

img.rotate(angle, resample=Image.BICUBIC, expand=True)

原始底稿

基于@Dinesh评论