首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
antialias专题
module ‘PIL.Image‘ has no attribute ‘ANTIALIAS‘
在ComfyUI Manager Update All 之后,可能会出现以下情况: module 'PIL.Image' has no attribute 'ANTIALIAS' 它主要是来以下路径: ComfyUI-Custom-Scripts/py/constrain_image.py 原因: ANTIALIAS在 Pillow 10.0.0 中被删除(在之前的多个版
阅读更多...
ddddocr报错:module ‘PIL.Image‘ has no attribute ‘ANTIALIAS‘
报错原因 问题出现在ddddocr的init文件下这一段 image = image.resize((int(image.size[0] * (64 / image.size[1])), 64), Image.ANTIALIAS).convert('L') 在ddddocr的新版本里"ANTIALIAS"方法被弃用了,在github的官网里有详细介绍 解决方法 # image = i
阅读更多...