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

ImageFlags.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: 61e0ec878a1a81c23349dfd0eeb26aa38c1e52cd (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
//
// System.Drawing.Imaging.ImageFlags.cs
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
// Author: Dennis Hayes (dennish@raytek.com)
//
using System;
namespace System.Drawing.Imaging
{
	public enum ImageFlags {
		Caching = 131072,
		ColorSpaceCmyk = 32,
		ColorSpaceGray = 64,
		ColorSpaceRgb = 16,
		ColorSpaceYcbcr = 128,
		ColorSpaceYcck = 256,
		HasAlpha = 2,
		HasRealDpi = 4096,
		HasRealPixelSize = 8192,
		HasTranslucent = 4,
		None = 0,
		PartiallyScalable = 8,
		ReadOnly = 65536,
		Scalable = 1
	}
}