Golang : Grayscale Image
Another feature that I like about this Disintegration Imaging package is the ability to generate grayscaled image. The codes below will demonstrate how to quickly turn an image into grayscale version.
package main
import (
"fmt"
"github.com/disintegration/imaging"
"os"
"runtime"
)
func main() {
// maximize CPU usage for maximum performance
runtime.GOMAXPROCS(runtime.NumCPU())
// load original image
img, err := imaging.Open("./big.jpg")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
// grayscale the image
grayimg := imaging.Grayscale(img)
// save grayscaled image
err = imaging.Save(grayimg, "./grayscaled.png")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
// everything ok
fmt.Println("Done")
}
big.jpg
grayscaled.png
References :
See also : Golang : Generate thumbnails from images
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+6.1k Unix/Linux : How to open tar.gz file ?
+15.4k JavaScript/JQuery : Detect or intercept enter key pressed example
+16.6k Golang : Loop each day of the current month example
+18.3k Golang : Convert IPv4 address to decimal number(base 10) or integer
+21.4k Golang : How to get time zone and load different time zone?
+9.5k Golang : Temperatures conversion example
+13.5k Golang : Date and Time formatting
+31k Golang : Download file example
+18.2k Golang : How to log each HTTP request to your web server?
+8.2k Golang : Sort words with first uppercase letter
+8k Golang : Load DSA public key from file example
+14.2k Golang : Human readable time elapsed format such as 5 days ago