DekGenius.com
[ Team LiB ] Previous Section Next Section

EncoderValueserializable

System.Drawing.Imaging (system.drawing.dll)enum

This enumeration lists some common parameter values that can be passed to the JPEG, TIFF, and PNG encoders.

Note that ColorTypeCMYK, ColorTypeYCCK, FrameDimensionResolution, FrameDimensionTime, RenderNonProgressive, RenderProgressive, ScanMethodInterlaced, ScanMethodNonInterlaced, VersionGif87, and VersionGif89 are not supported in the current version of GDI+.

See EncoderParameter for more information on parameter values.

public enum EncoderValue {
   ColorTypeCMYK = 0,
   ColorTypeYCCK = 1,
   CompressionLZW = 2,
   CompressionCCITT3 = 3,
   CompressionCCITT4 = 4,
   CompressionRle = 5,
   CompressionNone = 6,
   ScanMethodInterlaced = 7,
   ScanMethodNonInterlaced = 8,
   VersionGif87 = 9,
   VersionGif89 = 10,
   RenderProgressive = 11,
   RenderNonProgressive = 12,
   TransformRotate90 = 13,
   TransformRotate180 = 14,
   TransformRotate270 = 15,
   TransformFlipHorizontal = 16,
   TransformFlipVertical = 17,
   MultiFrame = 18,
   LastFrame = 19,
   Flush = 20,
   FrameDimensionTime = 21,
   FrameDimensionResolution = 22,
   FrameDimensionPage = 23
}

Hierarchy

System.Object System.ValueType System.Enum(System.IComparabl, System.IFormattable, System.IConvertible) EncoderValue

    [ Team LiB ] Previous Section Next Section