UIImage+Rotate.h 250 B

123456789101112131415
  1. //
  2. // UIImage+Rotate.h
  3. // IphoneMapSdkDemo
  4. //
  5. // Created by wzy on 14-11-14.
  6. // Copyright (c) 2014年 Baidu. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIImage (Rotate)
  10. - (UIImage*)imageRotatedByDegrees:(CGFloat)degrees;
  11. @end