Generating thumbnails for webp file format

2.4k Views Asked by At

The following code is to create a thumbnail using github.com/disintegration/imaging package works well for typical image format like jpeg, but it does not work well for webp file format.

I got errorimaging: unsupported image format with the code below.

Is there a more robust way to generate thumbnails for typical image types (jpg, gif, tiff, bmp, etc.) and webp?

package main

import (
    "bytes"
    "fmt"
    "github.com/disintegration/imaging"
    "github.com/chai2010/webp"
    "io/ioutil"
)

//https://stackoverflow.com/questions/8340751/webp-encoder-decoder-in-go
func main() {
    //img, _ := imaging.Open("ml/input/apple.jpg")

    // Load webp
    data, _ := ioutil.ReadFile("ml/input/waterski2.webp")
    // Decode webp
    img, _ := webp.Decode(bytes.NewReader(data))
    //Create thumbnail
    dstImage := imaging.Thumbnail(img, 400, 400, imaging.Lanczos)

    err1:=imaging.Save(dstImage, "ml/output/waterski2.webp")
    if err1!=nil{
        fmt.Println(err1)
    }
}
1

There are 1 best solutions below

0
On

I got it works eventually with webp Save method.

package main

import (
    "bytes"
    "github.com/chai2010/webp"
    "github.com/disintegration/imaging"
    "io/ioutil"
)

//https://stackoverflow.com/questions/8340751/webp-encoder-decoder-in-go
func main() {
    //img, _ := imaging.Open("ml/input/apple.jpg")

    // Load webp
    data, _ := ioutil.ReadFile("ml/input/waterski2.webp")
    // Decode webp
    img, _ := webp.Decode(bytes.NewReader(data))
    //Create thumbnail
    dstImage := imaging.Thumbnail(img, 400, 400, imaging.Lanczos)


    webp.Save("ml/output/waterski2.webp",dstImage,&webp.Options{})

    //err1:=imaging.Save(dstImage, "ml/output/waterski2.webp")
    //if err1!=nil{
    //  fmt.Println(err1)
    //}
}