0

我编写了这个 Python 程序来创建矩阵(二维数组)并将其保存到 .png 文件中。该程序编译并运行,没有任何错误。即使创建了 IMAGE.png 文件,但 png 文件也不会打开。当我尝试在 MSpaint 中打开它时,它说:

无法打开图像。不是有效的位图文件或其格式当前不受支持。

源代码:

import numpy;
import png;

imagearray = numpy.zeros(shape=(512,512));

/* Code to insert one '1' in certain locations 
   of the numpy 2D Array. Rest of the location by default stores zero '0'.*/


f = open("IMAGE.png", 'wb');
f.write(imagearray);
f.close();

我不明白我哪里出错了,因为没有错误消息。请帮忙。

PS-我只是想将矩阵保存为图像文件,所以如果您在 Python2.7 中有更好更简单的方法,请建议。

谢谢你。

4

2 回答 2

1

并非每个数组都与图像格式兼容。假设您指的是字节数组,这就是您的操作方式:

import os
import io
import Image
from array import array

def readimage(path):
    count = os.stat(path).st_size
    with open(path, "rb") as f:
        return bytearray(f.read())

bytes = readimage(path+extension)
image = Image.open(io.BytesIO(bytes))
image.save(savepath)

代码片段取自这里

希望这会对你有所帮助,Yahli。

于 2017-05-06T16:33:18.093 回答
1

这是一个numpngw用于创建位深度为 1 的图像的示例(即图像中的值只是 0 和 1)。示例直接取自numpngw包的 README 文件:

import numpy as np
from numpngw import write_png

# Example 2
#
# Create a 1-bit grayscale image.

mask = np.zeros((48, 48), dtype=np.uint8)
mask[:2, :] = 1
mask[:, -2:] = 1
mask[4:6, :-4] = 1
mask[4:, -6:-4] = 1
mask[-16:, :16] = 1
mask[-32:-16, 16:32] = 1

write_png('example2.png', mask, bitdepth=1)

这是图像:

png图片

于 2017-05-06T16:48:10.737 回答