mirror of
https://github.com/wader/fq.git
synced 2024-11-23 09:56:07 +03:00
22 lines
499 B
Go
22 lines
499 B
Go
package tiff
|
|
|
|
// https://exiftool.org/TagNames/EXIF.html
|
|
// TODO: JPEGInterchangeFormat/JPEGInterchangeFormatLength, seem to just after the exif tag usually?
|
|
|
|
import (
|
|
"github.com/wader/fq/format"
|
|
"github.com/wader/fq/format/registry"
|
|
"github.com/wader/fq/pkg/decode"
|
|
)
|
|
|
|
// currently just a alias for tiff
|
|
|
|
func init() {
|
|
registry.MustRegister(decode.Format{
|
|
Name: format.EXIF,
|
|
Description: "Exchangeable Image File Format",
|
|
Groups: []string{},
|
|
DecodeFn: tiffDecode,
|
|
})
|
|
}
|