Pythonでの画像の使い方は何ですか。

Pythonにおいて、画像を処理する場合は通常、サードパーティーのライブラリが必要です。最も人気のある画像処理ライブラリはPillowです。Pillowライブラリには、画像を開いたり処理したり保存したりするための多くの機能が提供されています。

以下はPillowライブラリの基本的な使い方の例です。

  1. Pillowライブラリをインストールする。
pip install Pillow
  1. 画像を開く・表示する:
from PIL import Image

# 打开图像文件
image = Image.open("example.jpg")

# 显示图像
image.show()
  1. 画像のサイズを調整する。
# 调整图像大小
new_size = (200, 200)
resized_image = image.resize(new_size)

# 保存调整后的图像
resized_image.save("resized_image.jpg")
  1. 画像の形式を変更する:
# 转换图像格式
image.save("converted_image.png")
  1. フィルターエフェクトを追加する:
from PIL import ImageFilter

# 添加模糊滤镜
blurred_image = image.filter(ImageFilter.BLUR)

# 保存处理后的图像
blurred_image.save("blurred_image.jpg")

これらは単にPillowライブラリの基本的な使用例です。画像を処理し操作するためにさらに多くの機能を使用することができます。

コメントを残す 0

Your email address will not be published. Required fields are marked *