22 lines
		
	
	
		
			395 B
		
	
	
	
		
			Objective-C
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			395 B
		
	
	
	
		
			Objective-C
		
	
	
	
//
 | 
						|
//  RNCImageUtils.h
 | 
						|
//  RNCImageEditor
 | 
						|
//
 | 
						|
//  Created by Dawid Urbaniak on 30/05/2019.
 | 
						|
//  Copyright © 2019 Facebook. All rights reserved.
 | 
						|
//
 | 
						|
 | 
						|
#ifndef RNCImageUtils_h
 | 
						|
#define RNCImageUtils_h
 | 
						|
 | 
						|
#import <Foundation/Foundation.h>
 | 
						|
 | 
						|
@interface RNCImageUtils : NSObject
 | 
						|
 | 
						|
+ (NSString *)writeImage:(NSData *)image toPath:(NSString *)path error:(NSError **)error;
 | 
						|
 | 
						|
@end
 | 
						|
 | 
						|
 | 
						|
#endif /* RNCImageUtils_h */
 |