The solution to do UIImage flipping is with the Objective-C code:
[UIImage imageWithCGImage:img.CGImage scale:1.0 orientation: UIImageOrientationDownMirrored]
However, imageWithCGImage is not available in Swift! Is there a solution for flipping image horizontally with Swift? Thanks!