1. 首页
  2. 数据库
  3. 其它
  4. python生成圆形图片的方法

python生成圆形图片的方法

上传者: 2021-01-15 21:43:30上传 PDF文件 47.93KB 热度 22次
本文实例为大家分享了python生成圆形图片的具体代码,供大家参考,具体内容如下 # -*- coding: utf-8 -*- """ __author__= 'Du' __creation_time__= '2018/1/5 9:08' """ import os, math from PIL import Image def circle(): ima = Image.open("ball1.jpg").convert("RGBA") # ima = ima.resize((600, 600), Image.ANTIALIAS) size = ima.size print(
用户评论