123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- /*
- * This file is part of the SDWebImage package.
- * (c) Olivier Poitrey <rs@dailymotion.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- #import "SDWebImageCompat.h"
- #import "UIImage+Transform.h"
- /**
- Return the transformed cache key which applied with specify transformerKey.
- @param key The original cache key
- @param transformerKey The transformer key from the transformer
- @return The transformed cache key
- */
- FOUNDATION_EXPORT NSString * _Nullable SDTransformedKeyForKey(NSString * _Nullable key, NSString * _Nonnull transformerKey);
- /**
- Return the thumbnailed cache key which applied with specify thumbnailSize and preserveAspectRatio control.
- @param key The original cache key
- @param thumbnailPixelSize The thumbnail pixel size
- @param preserveAspectRatio The preserve aspect ratio option
- @return The thumbnailed cache key
- @note If you have both transformer and thumbnail applied for image, call `SDThumbnailedKeyForKey` firstly and then with `SDTransformedKeyForKey`.`
- */
- FOUNDATION_EXPORT NSString * _Nullable SDThumbnailedKeyForKey(NSString * _Nullable key, CGSize thumbnailPixelSize, BOOL preserveAspectRatio);
- /**
- A transformer protocol to transform the image load from cache or from download.
- You can provide transformer to cache and manager (Through the `transformer` property or context option `SDWebImageContextImageTransformer`).
-
- @note The transform process is called from a global queue in order to not to block the main queue.
- */
- @protocol SDImageTransformer <NSObject>
- @required
- /**
- For each transformer, it must contains its cache key to used to store the image cache or query from the cache. This key will be appened after the original cache key generated by URL or from user.
- @return The cache key to appended after the original cache key. Should not be nil.
- */
- @property (nonatomic, copy, readonly, nonnull) NSString *transformerKey;
- /**
- Transform the image to another image.
- @param image The image to be transformed
- @param key The cache key associated to the image. This arg is a hint for image source, not always useful and should be nullable. In the future we will remove this arg.
- @return The transformed image, or nil if transform failed
- */
- - (nullable UIImage *)transformedImageWithImage:(nonnull UIImage *)image forKey:(nonnull NSString *)key API_DEPRECATED("The key arg will be removed in the future. Update your code and don't rely on that.", macos(10.10, API_TO_BE_DEPRECATED), ios(8.0, API_TO_BE_DEPRECATED), tvos(9.0, API_TO_BE_DEPRECATED), watchos(2.0, API_TO_BE_DEPRECATED));
- @end
- #pragma mark - Pipeline
- /**
- Pipeline transformer. Which you can bind multiple transformers together to let the image to be transformed one by one in order and generate the final image.
- @note Because transformers are lightweight, if you want to append or arrange transformers, create another pipeline transformer instead. This class is considered as immutable.
- */
- @interface SDImagePipelineTransformer : NSObject <SDImageTransformer>
- /**
- All transformers in pipeline
- */
- @property (nonatomic, copy, readonly, nonnull) NSArray<id<SDImageTransformer>> *transformers;
- - (nonnull instancetype)init NS_UNAVAILABLE;
- + (nonnull instancetype)transformerWithTransformers:(nonnull NSArray<id<SDImageTransformer>> *)transformers;
- @end
- // There are some built-in transformers based on the `UIImage+Transformer` category to provide the common image geometry, image blending and image effect process. Those transform are useful for static image only but you can create your own to support animated image as well.
- // Because transformers are lightweight, these class are considered as immutable.
- #pragma mark - Image Geometry
- /**
- Image round corner transformer
- */
- @interface SDImageRoundCornerTransformer: NSObject <SDImageTransformer>
- /**
- The radius of each corner oval. Values larger than half the
- rectangle's width or height are clamped appropriately to
- half the width or height.
- */
- @property (nonatomic, assign, readonly) CGFloat cornerRadius;
- /**
- A bitmask value that identifies the corners that you want
- rounded. You can use this parameter to round only a subset
- of the corners of the rectangle.
- */
- @property (nonatomic, assign, readonly) SDRectCorner corners;
- /**
- The inset border line width. Values larger than half the rectangle's
- width or height are clamped appropriately to half the width
- or height.
- */
- @property (nonatomic, assign, readonly) CGFloat borderWidth;
- /**
- The border stroke color. nil means clear color.
- */
- @property (nonatomic, strong, readonly, nullable) UIColor *borderColor;
- - (nonnull instancetype)init NS_UNAVAILABLE;
- + (nonnull instancetype)transformerWithRadius:(CGFloat)cornerRadius corners:(SDRectCorner)corners borderWidth:(CGFloat)borderWidth borderColor:(nullable UIColor *)borderColor;
- @end
- /**
- Image resizing transformer
- */
- @interface SDImageResizingTransformer : NSObject <SDImageTransformer>
- /**
- The new size to be resized, values should be positive.
- */
- @property (nonatomic, assign, readonly) CGSize size;
- /**
- The scale mode for image content.
- */
- @property (nonatomic, assign, readonly) SDImageScaleMode scaleMode;
- - (nonnull instancetype)init NS_UNAVAILABLE;
- + (nonnull instancetype)transformerWithSize:(CGSize)size scaleMode:(SDImageScaleMode)scaleMode;
- @end
- /**
- Image cropping transformer
- */
- @interface SDImageCroppingTransformer : NSObject <SDImageTransformer>
- /**
- Image's inner rect.
- */
- @property (nonatomic, assign, readonly) CGRect rect;
- - (nonnull instancetype)init NS_UNAVAILABLE;
- + (nonnull instancetype)transformerWithRect:(CGRect)rect;
- @end
- /**
- Image flipping transformer
- */
- @interface SDImageFlippingTransformer : NSObject <SDImageTransformer>
- /**
- YES to flip the image horizontally. ⇋
- */
- @property (nonatomic, assign, readonly) BOOL horizontal;
- /**
- YES to flip the image vertically. ⥯
- */
- @property (nonatomic, assign, readonly) BOOL vertical;
- - (nonnull instancetype)init NS_UNAVAILABLE;
- + (nonnull instancetype)transformerWithHorizontal:(BOOL)horizontal vertical:(BOOL)vertical;
- @end
- /**
- Image rotation transformer
- */
- @interface SDImageRotationTransformer : NSObject <SDImageTransformer>
- /**
- Rotated radians in counterclockwise.⟲
- */
- @property (nonatomic, assign, readonly) CGFloat angle;
- /**
- YES: new image's size is extend to fit all content.
- NO: image's size will not change, content may be clipped.
- */
- @property (nonatomic, assign, readonly) BOOL fitSize;
- - (nonnull instancetype)init NS_UNAVAILABLE;
- + (nonnull instancetype)transformerWithAngle:(CGFloat)angle fitSize:(BOOL)fitSize;
- @end
- #pragma mark - Image Blending
- /**
- Image tint color transformer
- */
- @interface SDImageTintTransformer : NSObject <SDImageTransformer>
- /**
- The tint color.
- */
- @property (nonatomic, strong, readonly, nonnull) UIColor *tintColor;
- - (nonnull instancetype)init NS_UNAVAILABLE;
- + (nonnull instancetype)transformerWithColor:(nonnull UIColor *)tintColor;
- @end
- #pragma mark - Image Effect
- /**
- Image blur effect transformer
- */
- @interface SDImageBlurTransformer : NSObject <SDImageTransformer>
- /**
- The radius of the blur in points, 0 means no blur effect.
- */
- @property (nonatomic, assign, readonly) CGFloat blurRadius;
- - (nonnull instancetype)init NS_UNAVAILABLE;
- + (nonnull instancetype)transformerWithRadius:(CGFloat)blurRadius;
- @end
- #if SD_UIKIT || SD_MAC
- /**
- Core Image filter transformer
- */
- @interface SDImageFilterTransformer: NSObject <SDImageTransformer>
- /**
- The CIFilter to be applied to the image.
- */
- @property (nonatomic, strong, readonly, nonnull) CIFilter *filter;
- - (nonnull instancetype)init NS_UNAVAILABLE;
- + (nonnull instancetype)transformerWithFilter:(nonnull CIFilter *)filter;
- @end
- #endif
|