UIImage+Utility.h 435 B

12345678910111213141516
  1. //
  2. // UIImage+Utility.h
  3. // XHImageViewer
  4. //
  5. // Created by 曾 宪华 on 14-2-18.
  6. // Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIImage (Utility)
  10. + (UIImage *)fastImageWithData:(NSData *)data;
  11. + (UIImage *)fastImageWithContentsOfFile:(NSString *)path;
  12. + (UIImage* )rotateImage:(UIImage *)image;
  13. @end