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...)