跳转到内容

Python 图像库/文件 I/O

来自维基教科书,开放世界中的开放书籍

PIL 中的文件操作非常简单,并且反映了正常的 Python 方法。

import Image

img = Image.open(filepath)
from PIL import Image

img = Image.open("path/to/image.ext")
pixels = img.load() # Load the pixels of the image into a matrix

在窗口中显示指定图像的副本。

from PIL import Image

img = Image.open("path/to/image.ext")

img.show() # Shows the image in a new window
import Image

img = Image.open(filepath)
img.save("example.png")

#img.save(outfile, options...)
#img.save(outfile, format, options...)
华夏公益教科书