Files
Jay Brown b71a28d3c0 Merged in feature/support-more-types (pull request #219)
support new types for import

* tests pass

* missing file

* bug fixes
2026-03-31 17:40:42 +00:00

22 lines
432 B
Go

// Copyright 2014 <chaishushan{AT}gmail.com>. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package tiff
type Options struct {
EntryMap map[TagType]*IFDEntry
}
func (p *Options) TagGetter() TagGetter {
return &tifTagGetter{
EntryMap: p.EntryMap,
}
}
func (p *Options) TagSetter() TagSetter {
return &tifTagSetter{
EntryMap: p.EntryMap,
}
}