1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-03 09:57:46 +01:00
Telegram/thirdparty/PGPhotoEditor/PGPhotoHistogram.h

18 lines
469 B
C
Raw Normal View History

2015-10-01 18:19:52 +02:00
#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