from PIL import Image from io import BytesIO filename ... 'rb') as f: binary = f.read() img = Image.open(BytesIO(data)) # numpy配列の ...
確定! 回上一頁