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.
有谁知道专门使用 python 3.4.1 将 ppm 文件转换为 jpeg/jpg 的任何方法?我环顾四周,只能找到以前版本的 python 的解决方案。
您可以使用该Pillow模块。以下应该有效:
Pillow
from PIL import Image im = Image.open("sweet_pic.ppm") im.save("sweet_pic.jpg")
通读教程以获取更多信息。
您可以使用 OpenCV
i = cv.imread('im0001.ppm') cv.imwrite('im0001.jpg',i)