Error processing SSI file
LEADTOOLS Image File Support (Leadtools.Codecs assembly)

Show in webframe

CompactFile(Stream,Stream,Int32) Method








A source Stream containing the data for the file being compacted. All the pages will be read from this stream.
A destination Stream that will contain the written data.
Value that represents the number of pages to copy. Use 0 to copy all the pages. If pages is > 0, only pages will be copied to destStream.
Compacts TIFF/BigTIFF streams with default options.
Syntax
public void CompactFile( 
   Stream srcStream,
   Stream destStream,
   int pages
)
'Declaration
 
Public Overloads Sub CompactFile( _
   ByVal srcStream As Stream, _
   ByVal destStream As Stream, _
   ByVal pages As Integer _
) 
'Usage
 
Dim instance As RasterCodecs
Dim srcStream As Stream
Dim destStream As Stream
Dim pages As Integer
 
instance.CompactFile(srcStream, destStream, pages)
public void CompactFile( 
   Stream srcStream,
   Stream destStream,
   int pages
)
- (BOOL)compactStream:(LTLeadStream *)sourceStream 
    destinationStream:(LTLeadStream *)destinationStream 
                pages:(NSUInteger)pages 
                error:(NSError **)error
            
 function Leadtools.Codecs.RasterCodecs.CompactFile(Stream,Stream,Int32)( 
   srcStream ,
   destStream ,
   pages 
)
public:
void CompactFile( 
   Stream^ srcStream,
   Stream^ destStream,
   int pages
) 

Parameters

srcStream
A source Stream containing the data for the file being compacted. All the pages will be read from this stream.
destStream
A destination Stream that will contain the written data.
pages
Value that represents the number of pages to copy. Use 0 to copy all the pages. If pages is > 0, only pages will be copied to destStream.
Remarks

This method can also be used to copy or extract one or more pages from a TIFF/BigTIFF file and copy them without recompression to another TIFF/BigTIFF file.

This method can also be used to convert a TIFF file to BigTIFF or vice versa. The destination file will be TIFF or BigTIFF, depending on the value of BigTiff.

Example
For an an example, refer to CompactFile.
Requirements

Target Platforms

See Also

Reference

RasterCodecs Class
RasterCodecs Members
Overload List

Error processing SSI file