使用python切割图片
import sysimport os from PIL import Imagefile_root = "E:\\work\\yin\\yinn" #要切的图片放的文件fileList = []n = 0#读取文件列表def read_bmp_file_list(path): for root, dirs, files in os.walk(path, topdown=False): for file in files: fi
原创
2022-03-24 09:10:01 ·
3398 阅读 ·
0 评论