python的数组转为图片
时间: 2023-04-03 21:03:54 浏览: 106
python 文件转成16进制数组的实例
可以使用PIL库中的Image.fromarray()方法将numpy数组转换为图片。具体代码如下:
```python
from PIL import Image
import numpy as np
# 生成一个随机的numpy数组
arr = np.random.randint(0, 255, size=(100, 100, 3), dtype=np.uint8)
# 将numpy数组转换为图片
img = Image.fromarray(arr)
# 显示图片
img.show()
```
这段代码会生成一个100x100的随机彩色图片,并显示出来。
阅读全文