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.
|
|
1 year ago | |
|---|---|---|
| heic2jpg | 1 year ago | |
| heif | 1 year ago | |
| libde265 | 1 year ago | |
| testdata | 7 years ago | |
| .gitattributes | 7 years ago | |
| .gitignore | 3 years ago | |
| README.md | 1 year ago | |
| go.mod | 1 year ago | |
| go.sum | 3 years ago | |
| goheif.go | 1 year ago | |
| goheif_test.go | 3 years ago | |
README.md
GoHeif - A go gettable decoder/converter for HEIC based on libde265
Intel and ARM supported
Install
go get git.sequentialread.com/forest/goheif
- Code Sample
func main() {
flag.Parse()
...
fin, fout := flag.Arg(0), flag.Arg(1)
fi, err := os.Open(fin)
if err != nil {
log.Fatal(err)
}
defer fi.Close()
exif, err := goheif.ExtractExif(fi)
if err != nil {
log.Printf("Warning: no EXIF from %s: %v\n", fin, err)
}
img, err := goheif.Decode(fi)
if err != nil {
log.Fatalf("Failed to parse %s: %v\n", fin, err)
}
fo, err := os.OpenFile(fout, os.O_RDWR|os.O_CREATE, 0644)
if err != nil {
log.Fatalf("Failed to create output file %s: %v\n", fout, err)
}
defer fo.Close()
w, _ := newWriterExif(fo, exif)
err = jpeg.Encode(w, img, nil)
if err != nil {
log.Fatalf("Failed to encode %s: %v\n", fout, err)
}
log.Printf("Convert %s to %s successfully\n", fin, fout)
}
What is done
-
Changes make to @bradfitz's (https://github.com/bradfitz) golang heif parser
- Some minor bugfixes
- A few new box parsers, noteably 'iref' and 'hvcC'
-
Include libde265's source code (SSE by default enabled) and a simple golang binding
-
A Utility
heic2jpgto illustrate the usage.
License
-
heif and libde265 are in their own licenses
-
goheif.go, libde265 golang binding and the
heic2jpgutility are in MIT license
Credits
- heif parser by @bradfitz (https://github.com/go4org/go4/tree/master/media/heif)
- libde265 (https://github.com/strukturag/libde265)
- implementation learnt from libheif (https://github.com/strukturag/libheif)
TODO
- Upstream the changes to heif?