2
0

EncoderValue.cs 856 B

123456789101112131415161718192021222324252627282930313233343536
  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. public enum EncoderValue {
  11. ColorTypeCMYK = 0,
  12. ColorTypeYCCK = 1,
  13. CompressionCCITT3 = 3,
  14. CompressionCCITT4 = 4,
  15. CompressionLZW = 2,
  16. CompressionNone = 6,
  17. CompressionRle = 5,
  18. Flush = 20,
  19. FrameDimensionPage = 23,
  20. FrameDimensionResolution = 22,
  21. FrameDimensionTime = 21,
  22. LastFrame = 19,
  23. MultiFrame = 18,
  24. RenderNonProgressive = 12,
  25. RenderProgressive = 11,
  26. ScanMethodInterlaced = 7,
  27. ScanMethodNonInterlaced = 8,
  28. TransformFlipHorizontal = 16,
  29. TransformFlipVertical = 17,
  30. TransformRotate180 = 14,
  31. TransformRotate270 = 15,
  32. TransformRotate90 = 13,
  33. VersionGif87 = 9,
  34. VersionGif89 = 10
  35. }
  36. }