2
0

EncoderValue.cs 872 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // System.Drawing.Imaging.EncoderValue.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. // Author: Dennis Hayes ([email protected])
  6. //
  7. using System;
  8. namespace System.Drawing.Imaging
  9. {
  10. [Serializable]
  11. public enum EncoderValue {
  12. ColorTypeCMYK = 0,
  13. ColorTypeYCCK = 1,
  14. CompressionCCITT3 = 3,
  15. CompressionCCITT4 = 4,
  16. CompressionLZW = 2,
  17. CompressionNone = 6,
  18. CompressionRle = 5,
  19. Flush = 20,
  20. FrameDimensionPage = 23,
  21. FrameDimensionResolution = 22,
  22. FrameDimensionTime = 21,
  23. LastFrame = 19,
  24. MultiFrame = 18,
  25. RenderNonProgressive = 12,
  26. RenderProgressive = 11,
  27. ScanMethodInterlaced = 7,
  28. ScanMethodNonInterlaced = 8,
  29. TransformFlipHorizontal = 16,
  30. TransformFlipVertical = 17,
  31. TransformRotate180 = 14,
  32. TransformRotate270 = 15,
  33. TransformRotate90 = 13,
  34. VersionGif87 = 9,
  35. VersionGif89 = 10
  36. }
  37. }