Closed. This question needs to be more focused。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗?更新问题,使其仅通过editing this post专注于一个问题。
                        
                        5年前关闭。
                                                                                            
                
        
有没有简单的方法可以将PNG转换为PBM?

ocrad需要PBM图像,而不是PNG。

最佳答案

检出Pillow。根据the docs,它开箱即用地支持PBM,PGM和PPM格式。以下代码将帮助您入门:

from PIL import Image

im = Image.open("myfile.png")
im.save("myfile.pbm")

关于python - 我有一个PNG图片,想知道如何在python中将其有效地转换为PBM。,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27045423/

10-11 22:12