1 // 2 // EXImageUtils.h 3 // Exponent 4 // 5 // Created by Stanisław Chmiela on 17.11.2017. 6 // Copyright © 2017 650 Industries. All rights reserved. 7 // 8 9 #import <UIKit/UIKit.h> 10 #import <CoreMedia/CoreMedia.h> 11 #import <Foundation/Foundation.h> 12 13 @interface EXImageUtils : NSObject 14 15 + (UIImage *)generatePhotoOfSize:(CGSize)size; 16 + (UIImage *)cropImage:(UIImage *)image toRect:(CGRect)rect; 17 + (NSString *)writeImage:(NSData *)image toPath:(NSString *)path; 18 + (void)updatePhotoMetadata:(CMSampleBufferRef)imageSampleBuffer withAdditionalData:(NSDictionary *)additionalData inResponse:(NSMutableDictionary *)response; 19 20 @end 21