调用open()方法后,将在哪里创建Pillow Image类的实例?

时间:2019-06-30 22:55:25

标签: python python-imaging-library

我正在尝试了解Image.open()在枕头模块中的工作方式。我想知道在Image class方法中返回open()实例的位置。

1 个答案:

答案 0 :(得分:0)

很简单: 您首先使用Pillow来实例化该类。

from PIL import Image
image = Image() #Here we instantiate the class Image.

现在您可以打开图像了。

img = image.open('some_img.jpg')

如果您想要一个Numpy数组,则可以简单地使用:

img_array = np.array(img)