Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
CodecsLoadImageFlags Enumeration
See Also  
Leadtools.Codecs Namespace : CodecsLoadImageFlags Enumeration



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

Visual Basic (Declaration) 
<FlagsAttribute()>
Public Enum CodecsLoadImageFlags 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As CodecsLoadImageFlags
C# 
[FlagsAttribute()]
public enum CodecsLoadImageFlags : Enum 
C++/CLI 
[FlagsAttribute()]
public enum class CodecsLoadImageFlags : public Enum 

Members

MemberDescription
None Default.
FirstPass This is the first pass through a progressive JPEG or CMP file.
LastPass This is the last pass through a progressive JPEG or CMP file.
FirstRow The first row of the buffer is the first row of the image.
LastRow The last row of the buffer is the last row of the image.
Compressed The data in the buffer is 1-bit compressed data, which you can handle as explained in Speeding Up 1-Bit Documents.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.Codecs.CodecsLoadImageFlags

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also