Classes
The following classes are available globally.
-
Field Tag Types
See moreDeclaration
Objective-C
@interface TIFFFieldTagTypes : NSObject
Swift
class TIFFFieldTagTypes : NSObject
-
Field Types
See moreDeclaration
Objective-C
@interface TIFFFieldTypes : NSObject
Swift
class TIFFFieldTypes : NSObject
-
File Directory, represents all directory entries and can be used to read the image raster
See moreDeclaration
Objective-C
@interface TIFFFileDirectory : NSObject
Swift
class TIFFFileDirectory : NSObject
-
TIFF File Directory Entry
See moreDeclaration
Objective-C
@interface TIFFFileDirectoryEntry : NSObject
Swift
class TIFFFileDirectoryEntry : NSObject
-
TIFF Image containing the File Directories
See moreDeclaration
Objective-C
@interface TIFFImage : NSObject
Swift
class TIFFImage : NSObject
-
Coordinates of a window over a portion or the entire image coordinates
See moreDeclaration
Objective-C
@interface TIFFImageWindow : NSObject
Swift
class TIFFImageWindow : NSObject
-
Raster image values
See moreDeclaration
Objective-C
@interface TIFFRasters : NSObject
Swift
class TIFFRasters : NSObject
-
TIFF reader
See moreDeclaration
Objective-C
@interface TIFFReader : NSObject
Swift
class TIFFReader : NSObject
-
TIFF Writer.
For a striped TIFF, the FileDirectory setStripOffsets(NSArray) and setStripByteCounts(NSArray) methods are automatically set or adjusted based upon attributes including: rowsPerStrip imageHeight planarConfiguration samplesPerPixel
The Rasters calculateRowsPerStrip(int) and Rasters calculateRowsPerStrip(int, int) methods provide a mechanism for determining a FileDirectory rowsPerStrip setting.
See moreDeclaration
Objective-C
@interface TIFFWriter : NSObject
Swift
class TIFFWriter : NSObject
-
Deflate Compression
Declaration
Objective-C
@interface TIFFDeflateCompression : NSObject <TIFFCompressionDecoder, TIFFCompressionEncoder>
Swift
class TIFFDeflateCompression : NSObject, TIFFCompressionDecoder, TIFFCompressionEncoder
-
LZW Compression
Declaration
Objective-C
@interface TIFFLZWCompression : NSObject <TIFFCompressionDecoder, TIFFCompressionEncoder>
Swift
class TIFFLZWCompression : NSObject, TIFFCompressionDecoder, TIFFCompressionEncoder
-
Packbits Compression
Declaration
Objective-C
@interface TIFFPackbitsCompression : NSObject <TIFFCompressionDecoder, TIFFCompressionEncoder>
Swift
class TIFFPackbitsCompression : NSObject, TIFFCompressionDecoder, TIFFCompressionEncoder
-
Differencing Predictor decoder
See moreDeclaration
Objective-C
@interface TIFFPredictor : NSObject
Swift
class TIFFPredictor : NSObject
-
Raw / no compression
Declaration
Objective-C
@interface TIFFRawCompression : NSObject <TIFFCompressionDecoder, TIFFCompressionEncoder>
Swift
class TIFFRawCompression : NSObject, TIFFCompressionDecoder, TIFFCompressionEncoder
-
Unsupported compression
See moreDeclaration
Objective-C
@interface TIFFUnsupportedCompression : NSObject <TIFFCompressionDecoder, TIFFCompressionEncoder>
Swift
class TIFFUnsupportedCompression : NSObject, TIFFCompressionDecoder, TIFFCompressionEncoder
-
Read through byte data
See moreDeclaration
Objective-C
@interface TIFFByteReader : NSObject
Swift
class TIFFByteReader : NSObject
-
Write byte data
See moreDeclaration
Objective-C
@interface TIFFByteWriter : NSObject
Swift
class TIFFByteWriter : NSObject
-
Undocumented
See moreDeclaration
Objective-C
@interface TIFFIOUtils : NSObject /** * Copy a file * * @param copyFrom file to copy * @param copyTo file location to copy to */ +(void) copyFile: (NSString *) copyFrom toFile: (NSString *) copyTo; /** * Copy an input stream to a file * * @param copyFrom input stream to copy * @param copyTo file location to copy to */ +(void) copyInputStream: (NSInputStream *) copyFrom toFile: (NSString *) copyTo; /** * Get the file byte data * * @param file file path * * @return byte data */ +(NSData *) fileData: (NSString *) file; /** * Get the input stream byte data * * @param stream input stream * * @return input stream byte data */ +(NSData *) streamData: (NSInputStream *) stream; /** * Copy the input stream to an output stream * * @param copyFrom input stream * @param copyTo output stream */ +(void) copyInputStream: (NSInputStream *) copyFrom toOutputStream: (NSOutputStream *) copyTo; @end
Swift
class TIFFIOUtils : NSObject
-
Undocumented
Declaration
Objective-C
@interface TIFFConstants : NSObject @end
Swift
class TIFFConstants : NSObject