forked from google/tiff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiffep.go
24 lines (18 loc) · 890 Bytes
/
tiffep.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package tiffep
import "github.com/google/tiff"
var tiffEPTags = tiff.NewTagSet("TIFF/EP", 32768, 65535)
func init() {
tiffEPTags.Register(tiff.NewTag(33421, "CFARepeatPatternDim", nil))
tiffEPTags.Register(tiff.NewTag(33422, "CFAPattern", nil))
tiffEPTags.Register(tiff.NewTag(34859, "SelfTimeMode", nil))
tiffEPTags.Register(tiff.NewTag(37390, "FocalPlaneXResolution", nil))
tiffEPTags.Register(tiff.NewTag(37391, "FocalPlaneYResolution", nil))
tiffEPTags.Register(tiff.NewTag(37392, "FocalPlaneResolutionUnit", nil))
tiffEPTags.Register(tiff.NewTag(37398, "TIFF/EPStandardID", nil))
tiffEPTags.Register(tiff.NewTag(37399, "SensingMethod", nil))
tiffEPTags.Lock()
tiff.DefaultTagSpace.RegisterTagSet(tiffEPTags)
}