// // UIImage+Rotation.h // NYXImagesKit // // Created by @Nyx0uf on 02/05/11. // Copyright 2012 Nyx0uf. All rights reserved. // www.cocoaintheshell.com // #import "NYXImagesHelper.h" @interface UIImage (NYX_Rotating) -(UIImage*)rotateInRadians:(float)radians; -(UIImage*)rotateInDegrees:(float)degrees; -(UIImage*)rotateImagePixelsInRadians:(float)radians; -(UIImage*)rotateImagePixelsInDegrees:(float)degrees; -(UIImage*)verticalFlip; -(UIImage*)horizontalFlip; @end