UIImage+BUCommon.h 284 B

12345678910111213141516171819
  1. //
  2. // UIImage+BUCommon.h
  3. // BUFoundation
  4. //
  5. // Created by ByteDance on 2022/3/28.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface UIImage (BUCommon)
  10. // 图片高斯模糊效果
  11. - (UIImage *)bu_transToBlurLevel:(NSUInteger)blurRadius;
  12. @end
  13. NS_ASSUME_NONNULL_END