mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
18 lines
469 B
Objective-C
18 lines
469 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "PGCurvesTool.h"
|
|
|
|
@interface PGPhotoHistogramBins : NSObject
|
|
|
|
- (id)objectAtIndexedSubscript:(NSUInteger)idx;
|
|
- (NSUInteger)count;
|
|
|
|
@end
|
|
|
|
@interface PGPhotoHistogram : NSObject
|
|
|
|
- (instancetype)initWithLuminanceCArray:(NSUInteger *)luminanceArray redCArray:(NSUInteger *)redArray greenCArray:(NSUInteger *)greenArray blueCArray:(NSUInteger *)blueArray;
|
|
|
|
- (PGPhotoHistogramBins *)histogramBinsForType:(PGCurvesType)type;
|
|
|
|
@end
|