Exif

0.0.6

kichikuchi/Exif

What's New

Release 0.0.6

2019-02-09T08:47:12Z

Exif

Build Status

This is a Swift framework providing Exif.

Use

create

// from resource, type
let exif = Exif(forResource: "cat", ofType: "jpg")

// from ciimage
let ciimage = CIImage()
let exif = Exif(ciimage: ciimage)

// from resource path
let url = URL(fileURLWithPath: pathString)
let exif = Exif(contentsOf: url)

access

let exif = Exif(forResource: "cat", ofType: "jpg")

// all properties
exif.properties.forEach { (key, value) in
    print(key, value)
}

// each property
exif.aperture
exif.fNumber // exif has 31 properties

Requirements

  • Swift 4.1 / Xcode 9.3
  • iOS 9.0 or later

Installation

Carthage

  • Add github "kichikuchi/Exif" to your Cartfile.
  • Run carthage update.

License

Exif is released under the MIT License.

Description

  • Swift Tools
View More Packages from this Author

Dependencies

  • None
Last updated: Thu Apr 09 2026 03:04:26 GMT-0900 (Hawaii-Aleutian Daylight Time)