You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
537 B
33 lines
537 B
package main
|
|
|
|
import (
|
|
"bufio"
|
|
"image"
|
|
|
|
"github.com/harukasan/go-libwebp/examples/util"
|
|
"github.com/harukasan/go-libwebp/webp"
|
|
)
|
|
|
|
func main() {
|
|
img := util.ReadPNG("cosmos.png")
|
|
|
|
// Create file and buffered writer
|
|
io := util.CreateFile("encoded_cosmos.webp")
|
|
w := bufio.NewWriter(io)
|
|
defer func() {
|
|
w.Flush()
|
|
io.Close()
|
|
}()
|
|
|
|
config := webp.Config{
|
|
Preset: webp.PresetDefault,
|
|
Quality: 90,
|
|
Method: 6,
|
|
}
|
|
|
|
// Encode into WebP
|
|
if err := webp.EncodeRGBA(w, img.(*image.RGBA), config); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|