-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathFileInfo.h
More file actions
92 lines (87 loc) · 2.04 KB
/
Copy pathFileInfo.h
File metadata and controls
92 lines (87 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
//
// FileInfo.h
// RMi
//
// Created by Marcelo da Mata on 26/03/2013.
//
//
#import <Foundation/Foundation.h>
@interface FileInfo : NSObject {
@private
int fileFormat;
int fileType;
int nImages;
int compression;
int samplesPerPixel;
int width;
int height;
int offset;
long long longOffset;
BOOL intelByteOrder;
BOOL whiteIsZero;
NSString *fileName;
NSString *directory;
NSString *url;
NSString *unit;
double pixelWidth;
double pixelHeight;
double pixelDepth;
char *reds;
char *greens;
char *blues;
int redLength;
int greenLength;
int blueLength;
int lutSize;
}
-(void)setFormat: (int) format;
-(void)setType: (int) type;
-(void)setNImages: (int) numImages;
-(void)setCompression: (int) compress;
-(void)setSamplesPerPixel: (int) samplesPPixel;
-(void)setWidth: (int) w;
-(void)setHeight: (int) h;
-(void)setOffset: (int) o;
-(void)setRedLength: (int) rLength;
-(void)setGreenLength: (int) gLength;
-(void)setBlueLength: (int) bLength;
-(void)setLutSize: (int) lut;
-(void)setLongOffset: (long long) lo;
-(void)setIntelByteOrder: (BOOL) intelOrder;
-(void)setWhiteIsZero: (BOOL) wIsZero;
-(void)setFileName: (NSString *) name;
-(void)setDirectory: (NSString *) dir;
-(void)setURL: (NSString *) u;
-(void)setUnit: (NSString *) u;
-(void)setPixelWidth: (double) pWidth;
-(void)setPixelHeight: (double) pHeight;
-(void)setPixelDepth: (double) pDepth;
-(void)setReds: (char *) r;
-(void)setGreens: (char *) g;
-(void)setBlues: (char *) b;
-(int)getFormat;
-(int)getType;
-(int)getNImages;
-(int)getCompression;
-(int)getSamplesPerPixel;
-(int)getWidth;
-(int)getHeight;
-(int)getOffset;
-(int)getRedLength;
-(int)getGreenLength;
-(int)getBlueLength;
-(int)getLutSize;
-(long long)getLongOffset;
-(BOOL)getIntelByteOrder;
-(BOOL)getWhiteIsZero;
-(NSString *)getFileName;
-(NSString *)getDirectory;
-(NSString *)getURL;
-(NSString *)getUnit;
-(double)getPixelWidth;
-(double)getPixelHeight;
-(double)getPixelDepth;
-(char *)getReds;
-(char *)getGreens;
-(char *)getBlues;
@end