PythonでPylabの図をPILイメージとして保存する方法
方法1: ファイルを介して保存して読み込む方法import pylab as plt from PIL import Image # Pylabで図を作成する plt.plot([1, 2, 3, 4], [1, 4, 9, 16]) plt.xlabel('X軸') plt.ylabel('Y軸') # 図を一時ファイルに保存する temp_file = 'temp.png' plt.savefig(temp_file) # PILでイメージとして読み込む pil_image = Image.open(temp_file) # イメージの表示や処理を行う # 一時ファイルを削除する os.r>>More