Skip to content

Instantly share code, notes, and snippets.

@ClaudeSutterlin
ClaudeSutterlin / UIImageFixedOrientationExtension.swift
Last active September 12, 2018 12:52 — forked from schickling/UIImageFixedOrientationExtension.swift
[Swift3] Extension to fix orientation of an UIImage (Sets orientation to portrait)
extension UIImage {
func fixedOrientation() -> UIImage {
if imageOrientation == .up {
return self
}
var transform: CGAffineTransform = CGAffineTransform.identity