使用PPMImage创建readfile函数

时间:2016-11-19 03:36:28

标签: python readfile

Python的超级新手更不用说编码了。我被困在处理PPMImage和创建readfile函数的这个赋值。

我们的教授给了我们这个函数的提示:

  

"使用构造函数和这三个整数创建PPMImage   以上作为参数(存储在名为image_variable的变量中)。环   直到文件结尾读取像素的红色,绿色和蓝色分量,   通过方法addpixel(),Close将这些附加到列表self .__像素   filename将image_variable返回给调用者"

到目前为止我所拥有的是

def readfile(filename):
    fv = open(filename, "r")            ### Open filename for reading.
    line = fv.readline()                ### Read line containing "P3"
    line = fv.readline().rstrip().split() ###Read line containing integers width and height (hint: use rstrip() and split())
    line = fv.readline()   

    close = fv.close()
    return image_variable 

有关如何获取所需的其余代码的任何提示? 谢谢!

0 个答案:

没有答案