對(duì)一些常用UIImage 圖片處理的功能做了簡(jiǎn)單的封裝,不多杆故,如果有什么需求的迅箩,可以留言在下面,我再加進(jìn)去处铛。
- 圖片裁剪饲趋,適用于圓形頭像的裁剪拐揭,可以自己設(shè)置邊框大小和顏色
+ (UIImage *)imageWithClipImage:(UIImage *)image borderWidth:(CGFloat)borderWidth borderColor:(UIColor *)color;
- 截屏功能
+ (UIImage *)imageWithCaptureView:(UIView *)captureView;
- 根據(jù)顏色生成圖片
+ (UIImage *)imageWithColor:(UIColor *)color size:(CGSize)size;
- 根據(jù)文字生成水印圖片 rect 是相對(duì)圖片大小的位置
+ (UIImage *)imageWithWaterMarkImage:(NSString *)imageName text:(NSString *)str textRect:(CGRect)rect;
- 改變圖片大小縮放
+ (UIImage *)imageWithOriginImage:(UIImage *)image scaleToSize:(CGSize)size;
重點(diǎn)來了———> 代碼下載地址