shogo82148 / androidbinary

Android binary file parser written in golang
MIT License
240 stars 79 forks source link

support more image format #49

Open blacklee123 opened 2 years ago

blacklee123 commented 2 years ago

some apk icon image format is .webp,but not supported use golang.org/x/image This repository holds supplementary Go image libraries.

shogo82148 commented 2 years ago

golang.org/x/image/webp registers its image format. So you can use webp by importing it.

import _ "golang.org/x/image/webp"