Enum EncoderValue

EncoderValue enumeration

Used to specify the parameter value passed to a JPEG or TIFF image encoder when using the EncoderParameters) or EncoderParameters) methods.

public enum EncoderValue

Values

NameValueDescription
ColorTypeCMYK0Not used in GDI+ version 1.0.
ColorTypeYCCK1Not used in GDI+ version 1.0.
CompressionLZW2Specifies the LZW compression scheme. Can be passed to the TIFF encoder as a parameter that belongs to the Compression category.
CompressionCCITT33Specifies the CCITT3 compression scheme. Can be passed to the TIFF encoder as a parameter that belongs to the compression category.
CompressionCCITT44Specifies the CCITT4 compression scheme. Can be passed to the TIFF encoder as a parameter that belongs to the compression category.
CompressionRle5Specifies the RLE compression scheme. Can be passed to the TIFF encoder as a parameter that belongs to the compression category.
CompressionNone6Specifies no compression. Can be passed to the TIFF encoder as a parameter that belongs to the compression category.
ScanMethodInterlaced7Not used in GDI+ version 1.0.
ScanMethodNonInterlaced8Not used in GDI+ version 1.0.
VersionGif879Not used in GDI+ version 1.0.
VersionGif8910Not used in GDI+ version 1.0.
RenderProgressive11Not used in GDI+ version 1.0.
RenderNonProgressive12Not used in GDI+ version 1.0.
TransformRotate9013Specifies that the image is to be rotated clockwise 90 degrees about its center. Can be passed to the JPEG encoder as a parameter that belongs to the transformation category.
TransformRotate18014Specifies that the image is to be rotated 180 degrees about its center. Can be passed to the JPEG encoder as a parameter that belongs to the transformation category.
TransformRotate27015Specifies that the image is to be rotated clockwise 270 degrees about its center. Can be passed to the JPEG encoder as a parameter that belongs to the transformation category.
TransformFlipHorizontal16Specifies that the image is to be flipped horizontally (about the vertical axis). Can be passed to the JPEG encoder as a parameter that belongs to the transformation category.
TransformFlipVertical17Specifies that the image is to be flipped vertically (about the horizontal axis). Can be passed to the JPEG encoder as a parameter that belongs to the transformation category.
MultiFrame18Specifies that the image has more than one frame (page). Can be passed to the TIFF encoder as a parameter that belongs to the save flag category.
LastFrame19Specifies the last frame in a multiple-frame image. Can be passed to the TIFF encoder as a parameter that belongs to the save flag category.
Flush20Specifies that a multiple-frame file or stream should be closed. Can be passed to the TIFF encoder as a parameter that belongs to the save flag category.
FrameDimensionTime21Not used in GDI+ version 1.0.
FrameDimensionResolution22Not used in GDI+ version 1.0.
FrameDimensionPage23Specifies that a frame is to be added to the page dimension of an image. Can be passed to the TIFF encoder as a parameter that belongs to the save flag category.

See Also