我正在尝试通过合并三个灰度 png 图像来创建一个 RGB png 图像pypng
。我已将 png 文件读入 numpy 数组,如下所示
pngFile1 = png.Reader("file1.png").read()
pngFile2 = png.Reader("file2.png").read()
pngFile3 = png.Reader("file3.png").read()
pngArray1 = np.array(list(pngFile1[2]))
pngArray2 = np.array(list(pngFile2[2]))
pngArray3 = np.array(list(pngFile3[2]))
如何组合这三个数组/图像来重新创建 RGB png 图像?