如何使用Python将.r8图像文件转换为.ppm?

时间:2016-10-10 08:08:10

标签: python image python-2.7

我正在尝试使用python scrpit将.r8文件转换为ppm文件。 转换.jpg文件时scrpit有效,但似乎不适用于.r8文件。

import PIL.Image
import os, os.path, string, sys


openfile = '/Users/.../.../Image_converter'
im = PIL.Image.open('Test0.r8')
im = im.convert('RGB')
im.save('Test0.ppm')
im.show('Test0.ppm')

Traceback (most recent call last):
  File "R8_to_PPM.py", line 7, in <module>
    im = PIL.Image.open('Test0.r8')
  File "/Users/FirstDawn/anaconda/lib/python2.7/site-packages/PIL/Image.py", line 2286, in open
% (filename if filename else fp))
IOError: cannot identify image file 'Test0.r8'

无论如何使用python进行转换? (或另一种语言?) 我在MacOS上使用python 2.7。 (.r8 =原始图形(每像素一个字节)平面一(PicLab)) 谢谢。

0 个答案:

没有答案