TIFFFieldTagTypes
Objective-C
@interface TIFFFieldTagTypes : NSObject
Swift
class TIFFFieldTagTypes : NSObject
Field Tag Types
-
Get the tag id
Declaration
Objective-C
+ (int)tagId:(enum TIFFFieldTagType)fieldTagType;Swift
class func tagId(_ fieldTagType: TIFFFieldTagType) -> Int32Parameters
fieldTagTypefield tag type
Return Value
tag id
-
Is this field an array type
Declaration
Objective-C
+ (int)isArray:(enum TIFFFieldTagType)fieldTagType;Swift
class func isArray(_ fieldTagType: TIFFFieldTagType) -> Int32Parameters
fieldTagTypefield tag type
Return Value
true if array type
-
Get a field tag type by id
Declaration
Objective-C
+ (enum TIFFFieldTagType)typeByTagId:(int)tagId;Swift
class func type(byTagId tagId: Int32) -> TIFFFieldTagTypeParameters
tagIdtag id
Return Value
field tag type
View on GitHub
TIFFFieldTagTypes Class Reference