我正在尝试将图像存储在python对象中。我的构造函数是
from PIL import Image
class MyImage:
def __init__(self, ImageFileName):
self.ImageFileName = ImageFileName
self.Img=Image.open(ImageFileName)#.convert("1")
Image._show(self.Img) #this shows the image
但是当我在课堂之外的其他文件中调用它时
myObject = MyImage('FileName')
Image._show(myObject.Img)#this does not show the image
我是python的新手,但我不知道出了什么问题。 谢谢。