dpdhf02040 2019-01-12 05:49
浏览 847
已采纳

如何使用golang压缩和调整gif大小

Is there has method or lib to compress and resize a gif use golang?

ps: I was tried bimg, but it not support gif.

  • 写回答

2条回答 默认 最新

  • drt96856 2019-01-16 04:52
    关注

    see doc https://golang.org/pkg/image/gif/#GIF

    func DecodeAll(r io.Reader) (*GIF, error)
    

    now you can get a GIT struct

    type GIF struct {
            Image []*image.Paletted // The successive images.
    

    then you can resize each of Image in GIF.

    for _,img:=range gif.Image{
        resize(img)
    }
    

    PS: image.Paletted implemented image.Image. so you can use https://github.com/nfnt/resize to do your job.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?