Signal-iOS/SignalServiceKit/Util/UIImage+OWS.h
2024-03-27 12:22:52 -05:00

29 lines
881 B
Objective-C

//
// Copyright 2014 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
NS_ASSUME_NONNULL_BEGIN
@interface UIImage (normalizeImage)
- (UIImage *)normalizedImage;
- (UIImage *)resizedWithQuality:(CGInterpolationQuality)quality rate:(CGFloat)rate;
- (nullable UIImage *)resizedWithMaxDimensionPoints:(CGFloat)maxDimensionPoints;
- (nullable UIImage *)resizedWithMaxDimensionPixels:(CGFloat)maxDimensionPixels;
- (nullable UIImage *)resizedImageToSize:(CGSize)dstSize;
- (UIImage *)resizedImageToFillPixelSize:(CGSize)boundingSize;
+ (UIImage *)imageWithColor:(UIColor *)color;
+ (UIImage *)imageWithColor:(UIColor *)color size:(CGSize)size;
+ (nullable NSData *)validJpegDataFromAvatarData:(NSData *)avatarData;
@property (readonly) size_t pixelWidth;
@property (readonly) size_t pixelHeight;
@property (readonly) CGSize pixelSize;
@end
NS_ASSUME_NONNULL_END