Namespace > IC.PhotoController Namespace > Structs, Records, Enums > CompressionType Enumeration
PhotoController 2.2
ContentsIndexHome
PreviousUpNext
IC.PhotoController.CompressionType Enumeration

Sepcifies a compression type, only work for TIF and GIF

C++
public: enum CompressionType {
  CompressionNone = 0,
  CompressionCCITT3,
  CompressionCCITT4,
  CompressionLZW,
  CompressionRle,
  GifOctreeQuantizer,
  GifWebSafe,
  GifStandard256,
  GifAdaptive
};
C#
public enum CompressionType {
  CompressionNone = 0,
  CompressionCCITT3,
  CompressionCCITT4,
  CompressionLZW,
  CompressionRle,
  GifOctreeQuantizer,
  GifWebSafe,
  GifStandard256,
  GifAdaptive
}
Visual Basic
Public Enum CompressionType
  CompressionNone = 0,
  CompressionCCITT3,
  CompressionCCITT4,
  CompressionLZW,
  CompressionRle,
  GifOctreeQuantizer,
  GifWebSafe,
  GifStandard256,
  GifAdaptive
End Enum
Members
Members 
Description 
CompressionNone 
Specifies no compression. Can be passed to the TIFF encoder as a parameter that belongs to the compression category.  
CompressionCCITT3 
Specifies the CCITT3 compression scheme. Can be passed to the TIFF encoder as a parameter that belongs to the compression category.  
CompressionCCITT4 
Specifies the CCITT4 compression scheme. Can be passed to the TIFF encoder as a parameter that belongs to the compression category.  
CompressionLZW 
Specifies the LZW compression scheme. Can be passed to the TIFF encoder as a parameter that belongs to the Compression category.  
CompressionRle 
Specifies the RLE compression scheme. Can be passed to the TIFF encoder as a parameter that belongs to the compression category.  
GifOctreeQuantizer 
Specifies the octree quantizer compression scheme to save the GIF formation.Set quality value to setup the different quality.  
GifWebSafe 
Specifies using 216 web safe color to save the GIF formation; quality value is not needed in this mode.  
GifStandard256 
Specifies using 256 standard color to save the GIF formation; quality value is not needed in this mode.  
GifAdaptive 
Specifies using adaptive palette to save the GIF; quality value is not needed in this mode. It will have a good result if a gif has many similar colors.  

Enum.cs

Send comments about this topic.
Copyright (c) 2008-2009 @ ImageComponent.NET. All rights reserved.