Loading...
Searching...
No Matches
NCBitmapRegionDecoder.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import "NCRectangle.h"
3#import <Foundation/Foundation.h>
4#import <UIKit/UIKit.h>
6@class NCImage;
7
8
18DEFAULT_EXPORT_ATTRIBUTE
19@interface NCBitmapRegionDecoder : NSObject
20
36+ (nullable NCBitmapRegionDecoder *)newInstance:(nonnull NSData *)data;
37
53+ (nullable NCBitmapRegionDecoder *)newInstanceFromImage:(nullable NCImage *)data;
54
71- (nullable UIImage *)decodeRegion:(nonnull NCRectangle *)rect
72 sampleSize:(float)sampleSize;
73
87@property (nonatomic, readonly) int32_t width;
88
102@property (nonatomic, readonly) int32_t height;
103
104@end