UIImage+Rotating.h 485 B

12345678910111213141516171819202122232425262728
  1. //
  2. // UIImage+Rotation.h
  3. // NYXImagesKit
  4. //
  5. // Created by @Nyx0uf on 02/05/11.
  6. // Copyright 2012 Nyx0uf. All rights reserved.
  7. // www.cocoaintheshell.com
  8. //
  9. #import "NYXImagesHelper.h"
  10. @interface UIImage (NYX_Rotating)
  11. -(UIImage*)rotateInRadians:(float)radians;
  12. -(UIImage*)rotateInDegrees:(float)degrees;
  13. -(UIImage*)rotateImagePixelsInRadians:(float)radians;
  14. -(UIImage*)rotateImagePixelsInDegrees:(float)degrees;
  15. -(UIImage*)verticalFlip;
  16. -(UIImage*)horizontalFlip;
  17. @end