Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EncoderValue.cs « System.Drawing.Imaging « System.Drawing « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e51a47031e4b79949a2f0223abd9d36a3b1cbeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// System.Drawing.Imaging.EncoderValue.cs
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
// Author: Dennis Hayes (dennish@raytek.com)
//
using System;
namespace System.Drawing.Imaging 
{
	public enum EncoderValue {
		ColorTypeCMYK = 0,
		ColorTypeYCCK = 1,
		CompressionCCITT3 = 3,
		CompressionCCITT4 = 4,
		CompressionLZW = 2,
		CompressionNone = 6,
		CompressionRle = 5,
		Flush = 20,
		FrameDimensionPage = 23,
		FrameDimensionResolution = 22,
		FrameDimensionTime = 21,
		LastFrame = 19,
		MultiFrame = 18,
		RenderNonProgressive = 12,
		RenderProgressive = 11,
		ScanMethodInterlaced = 7,
		ScanMethodNonInterlaced = 8,
		TransformFlipHorizontal = 16,
		TransformFlipVertical = 17,
		TransformRotate180 = 14,
		TransformRotate270 = 15,
		TransformRotate90 = 13,
		VersionGif87 = 9,
		VersionGif89 = 10
	}
}