1
1
mirror of https://github.com/wader/fq.git synced 2024-12-18 19:01:34 +03:00
fq/format/tiff/exif.go

23 lines
496 B
Go
Raw Normal View History

2020-06-08 03:29:51 +03:00
package tiff
// https://exiftool.org/TagNames/EXIF.html
// TODO: JPEGInterchangeFormat/JPEGInterchangeFormatLength, seem to just after the exif tag usually?
2020-06-08 03:29:51 +03:00
import (
"github.com/wader/fq/format"
"github.com/wader/fq/pkg/decode"
"github.com/wader/fq/pkg/interp"
2020-06-08 03:29:51 +03:00
)
// currently just a alias for tiff
func init() {
interp.RegisterFormat(
format.Exif,
&decode.Format{
Description: "Exchangeable Image File Format",
Groups: []*decode.Group{},
DecodeFn: tiffDecode,
})
2020-06-08 03:29:51 +03:00
}