mirror of
https://github.com/status-im/react-native-camera.git
synced 2025-02-24 17:58:20 +00:00
21 lines
567 B
Objective-C
21 lines
567 B
Objective-C
//
|
|
// RNImageUtils.h
|
|
// RCTCamera
|
|
//
|
|
// Created by Joao Guilherme Daros Fidelis on 19/01/18.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <CoreMedia/CoreMedia.h>
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface RNImageUtils : NSObject
|
|
|
|
+ (UIImage *)generatePhotoOfSize:(CGSize)size;
|
|
+ (UIImage *)cropImage:(UIImage *)image toRect:(CGRect)rect;
|
|
+ (NSString *)writeImage:(NSData *)image toPath:(NSString *)path;
|
|
+ (void)updatePhotoMetadata:(CMSampleBufferRef)imageSampleBuffer withAdditionalData:(NSDictionary *)additionalData inResponse:(NSMutableDictionary *)response;
|
|
|
|
@end
|
|
|