NanCunChild

Results 6 comments of NanCunChild

能不能用代码圈起来?这个把markdown写进去了,看着很难受

Maybe the VPN proxy is covered by the cultivation proxy. Just reboot and turn your VPN on.

I just mean that another lib-supported sharing page. The name is extend share.

出现问题的请自行从源码下载并安装,目前GitHub源码中已经为PIL添加了ANTIALIAS属性。 如果使用旧版本,请在调用的脚本中添加: ```python from PIL import Image if not hasattr(Image, 'ANTIALIAS'): setattr(Image, 'ANTIALIAS', Image.LANCZOS) ```

解决方案: - 使用低于9.5.0版本的pillow - 修改源代码,将ddddocr的库文件中所有引用 `ANTIALIAS` 的地方改为新属性 `LANCZOS` - 在你使用ddddocr的程序中,ddddocr引入之前使用这个来让python自动替换属性: ```python from PIL import Image if not hasattr(Image, 'ANTIALIAS'): setattr(Image, 'ANTIALIAS', Image.LANCZOS) ```