Skip to content

mathisve/GoRandomNoiseImage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

build

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:

img1

About

generate a random noise image using golang

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages