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

ImageCodecFlags.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: 235ebed2fc0929029617d772cc0f0ee38425e275 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// System.Drawing.Imaging.ImageCodecFlags.cs
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
// Author: Dennis Hayes (dennish@raytek.com)
//
using System;
namespace System.Drawing.Imaging
{
	public enum ImageCodecFlags {
		BlockingDecode = 32,
		Builtin = 65536,
		Decoder = 2,
		Encoder = 1,
		SeekableEncode = 16,
		SupportBitmap = 4,
		SupportVector = 8,
		System = 131072,
		User = 262144
	}
}