--- title: Exif description: Applicable to JPEG and TIFF images, returns an EXIF object containing image metadata. categories: [] keywords: [] action: related: [] returnType: exif.ExifInfo signatures: [RESOURCE.Exif] toc: true --- Applicable to JPEG and TIFF images, the `Exif` method on an image `Resource` object returns an [EXIF] object containing image metadata. ## Methods Date : (`time.Time`) Returns the image creation date/time. Format with the [`time.Format`]function. Lat : (`float64`) Returns the GPS latitude in degrees. Long : (`float64`) Returns the GPS longitude in degrees. Tags : (`exif.Tags`) Returns a collection of the available EXIF tags for this image. You may include or exclude specific tags from this collection in the [site configuration]. ## Examples To list the creation date, location, and EXIF tags: ```go-html-template {{ with resources.Get "images/a.jpg" }} {{ with .Exif }}

Date: {{ .Date }}

Lat/Long: {{ .Lat }}/{{ .Long }}

{{ with .Tags }}

Tags

{{ range $k, $v := . }} {{ end }}
TagValue
{{ $k }}{{ $v }}
{{ end }} {{ end }} {{ end }} ``` To list specific values: ```go-html-template {{ with resources.Get "images/a.jpg" }} {{ with .Exif }} {{ end }} {{ end }} ``` {{% include "methods/resource/_common/global-page-remote-resources.md" %}} [exif]: https://en.wikipedia.org/wiki/Exif [site configuration]: /content-management/image-processing/#exif-data [`time.Format`]: /functions/time/format