TIFFReader
Objective-C
@interface TIFFReader : NSObject
Swift
class TIFFReader : NSObject
TIFF reader
-
Read a TIFF from an input stream
Declaration
Objective-C
+ (TIFFImage *)readTiffFromStream:(NSInputStream *)stream andCache:(BOOL)cache;
Swift
class func readTiff(from stream: InputStream!, andCache cache: Bool) -> TIFFImage!
Parameters
stream
TIFF input stream
cache
true to cache tiles and strips
Return Value
TIFF image
-
Read a TIFF from the byte reader
Declaration
Objective-C
+ (TIFFImage *)readTiffFromReader:(TIFFByteReader *)reader;
Swift
class func readTiff(from reader: TIFFByteReader!) -> TIFFImage!
Parameters
reader
byte reader
Return Value
TIFF image
-
Read a TIFF from the byte reader
Declaration
Objective-C
+ (TIFFImage *)readTiffFromReader:(TIFFByteReader *)reader andCache:(BOOL)cache;
Swift
class func readTiff(from reader: TIFFByteReader!, andCache cache: Bool) -> TIFFImage!
Parameters
reader
byte reader
cache
true to cache tiles and strips
Return Value
TIFF image