I have 3 variables namely R, G, B. I want to make a PNG image based on the three using rasterio. I tried using np.dstack to stack the 3 images and use the result to write it.
Using rasterio, I tried to write it this way:
rgb = np.dstack((Nr,Ng,Nb))  
finame = "Image_RGB.png"
with rasterio.Env():
    with rasterio.open(finame, 'w',
        driver='PNG',
        height=rgb.shape[0],
        width=rgb.shape[1],
        count=1,
        dtype=rgb.dtype,
        nodata=0,
        compress='deflate') as dst:
        dst.write(rgb, 1)
But I get this error:
ValueError: Source shape (1, 830, 793, 3) is inconsistent 
with given indexes 1
				
                        
Two things are going wrong here:
rgbshould be (3, 830, 793) not (830, 793, 3).count=1and dodst.write(rgb, 1). This makes it try to write the rgb as the first band of the output file. Instead you wantcount=3anddst.write(rgb).This is a bit late for you, but maybe others will still be helped by my answer.