Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有将PNG转换为PBM的简单方法?
ocrad 需要 PBM 图像,而不是 PNG。
退房Pillow。根据文档,它支持开箱即用的 PBM、PGM 和 PPM 格式。以下代码应该可以帮助您入门:
Pillow
from PIL import Image im = Image.open("myfile.png") im.save("myfile.pbm")