b71a28d3c0
support new types for import * tests pass * missing file * bug fixes
22 lines
432 B
Go
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,
|
|
}
|
|
}
|