GoRandomNoiseImage Generate random noise RGB images with Golang. img := image.NewRGBA(image.Rectangle{Min: min, Max: max}) for x := 0; x < width; x++ { for y := 0; y < height; y++ { img.Set(x, y, GetRandomColor()) } } Example: