dkahgld

UIImage+ST.h 947B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // UIImage+ST.h
  3. // STImageHead
  4. //
  5. // Created by 沈兆良 on 16/2/25.
  6. // Copyright © 2016年 沈兆良. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIImage (ST)
  10. /**
  11. * 获取圆角图片
  12. *
  13. * @param image <#image description#>
  14. * @param borderWidth <#borderWidth description#>
  15. * @param color <#color description#>
  16. *
  17. * @return <#return value description#>
  18. */
  19. + (UIImage *)imageWithClipImage:(UIImage *)image borderWidth:(CGFloat)borderWidth borderColor:(UIColor *)color;
  20. /**
  21. * 指定区域图片的截图
  22. *
  23. * @param sourceImage 原始图片
  24. * @param clipRect 截取范围
  25. *
  26. * @return 截图图片
  27. */
  28. + (UIImage *)imageWithSourceImage:(UIImage *)sourceImage
  29. clipRect:(CGRect)clipRect;
  30. /**
  31. * 截取指定位置的图片
  32. *
  33. * @param bounds <#bounds description#>
  34. *
  35. * @return <#return value description#>
  36. */
  37. - (UIImage *)croppedImage:(CGRect)bounds;
  38. @end