mirror of
https://github.com/wader/fq.git
synced 2024-11-24 03:05:22 +03:00
21 lines
348 B
Go
21 lines
348 B
Go
|
package tiff
|
||
|
|
||
|
// https://exiftool.org/TagNames/EXIF.html
|
||
|
|
||
|
import (
|
||
|
"fq/format"
|
||
|
"fq/format/registry"
|
||
|
"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,
|
||
|
})
|
||
|
}
|