TIFFFileDirectoryEntry
Objective-C
@interface TIFFFileDirectoryEntry : NSObject
Swift
class TIFFFileDirectoryEntry : NSObject
TIFF File Directory Entry
-
Initialize
Declaration
Objective-C
- (instancetype)initWithFieldTag:(enum TIFFFieldTagType)fieldTag andFieldType:(enum TIFFFieldType)fieldType andTypeCount:(int)typeCount andValues:(NSObject *)values;Swift
init!(fieldTag: TIFFFieldTagType, andFieldType fieldType: TIFFFieldType, andTypeCount typeCount: Int32, andValues values: NSObject!)Parameters
fieldTagfield tag type
fieldTypefield type
typeCounttype count
valuesvalues
-
Get the field tag type
Declaration
Objective-C
- (enum TIFFFieldTagType)fieldTag;Swift
func fieldTag() -> TIFFFieldTagTypeReturn Value
field tag type
-
Get the field type
Return Value
field type
-
Get the type count
Declaration
Objective-C
- (int)typeCount;Swift
func typeCount() -> Int32Return Value
type count
-
Get the values
Declaration
Objective-C
- (NSObject *)values;Swift
func values() -> NSObject!Return Value
values
-
Size in bytes of the image file directory entry and its values (not contiguous bytes)
Declaration
Objective-C
- (int)sizeWithValues;Swift
func sizeWithValues() -> Int32Return Value
size in bytes
-
Size of the values not included in the directory entry bytes
Declaration
Objective-C
- (int)sizeOfValues;Swift
func sizeOfValues() -> Int32Return Value
size in bytes
View on GitHub
TIFFFileDirectoryEntry Class Reference