From e1d13858512e09f71ab290480814f27b348c3f50 Mon Sep 17 00:00:00 2001 From: Dustin Oprea Date: Tue, 26 May 2020 21:52:42 -0400 Subject: [PATCH] png.go: Add TODO about GetExifData --- png.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/png.go b/png.go index d2823e7..73aef40 100644 --- a/png.go +++ b/png.go @@ -130,6 +130,8 @@ func (cs *ChunkSlice) Exif() (rootIfd *exif.Ifd, data []byte, err error) { im := exif.NewIfdMappingWithStandard() ti := exif.NewTagIndex() + // TODO(dustin): Refactor and support `exif.GetExifData()`. + _, index, err := exif.Collect(im, ti, chunk.Data) log.PanicIf(err)