CodecsLoadImageFlags Enumeration (original) (raw)

Summary

Describes whether this is the first or last call of the event, and whether the buffer contains first or last row of image data.

Syntax

C#

Objective-C

C++/CLI

Java

Python

[FlagsAttribute()] public enum CodecsLoadImageFlags

typedef NS_OPTIONS(NSUInteger, LTCodecsLoadImageFlags) 
public enum CodecsLoadImageFlags 

[FlagsAttribute()] public enum class CodecsLoadImageFlags

class CodecsLoadImageFlags(Enum): None = 0 FirstPass = 1 LastPass = 2 FirstRow = 4 LastRow = 8 Compressed = 16

Members

Value Member Description
0x00000000 None Default.
0x00000001 FirstPass This is the first pass through a progressive JPEG or CMP file.
0x00000002 LastPass This is the last pass through a progressive JPEG or CMP file.
0x00000004 FirstRow The first row of the buffer is the first row of the image.
0x00000008 LastRow The last row of the buffer is the last row of the image.
0x00000010 Compressed The data in the buffer is 1-bit compressed data, which you can handle as explained in Speeding Up 1-Bit Documents.

Leadtools.Codecs Assembly

CompactFile(Stream,Stream,int,int,bool,int,int,bool,int,CodecsSavePageMode,bool,bool) Method

CompactFile(Stream,Stream,int,int,bool,long,int,bool,long,CodecsSavePageMode,bool,bool,bool) Method

CompactFile(string,string,int,int,bool,int,int,bool,int,CodecsSavePageMode,bool,bool) Method

CompactFile(string,string,int,int,bool,long,int,bool,long,CodecsSavePageMode,bool,bool,bool) Method

StartCompress(int,int,int,RasterByteOrder,RasterViewPerspective,int,byte[],int,int,CodecsCompression,CodecsCompressDataCallback) Method