forked from stride3d/stride
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImageFlags.cs
More file actions
71 lines (69 loc) · 1.86 KB
/
ImageFlags.cs
File metadata and controls
71 lines (69 loc) · 1.86 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace FreeImageAPI;
//
// Summary:
// Specifies the attributes of the pixel data contained in an System.Drawing.Image
// object. The System.Drawing.Image.Flags property returns a member of this enumeration.
[Flags]
public enum ImageFlags
{
//
// Summary:
// There is no format information.
None = 0,
//
// Summary:
// The pixel data is scalable.
Scalable = 1,
//
// Summary:
// The pixel data contains alpha information.
HasAlpha = 2,
//
// Summary:
// Specifies that the pixel data has alpha values other than 0 (transparent) and
// 255 (opaque).
HasTranslucent = 4,
//
// Summary:
// The pixel data is partially scalable, but there are some limitations.
PartiallyScalable = 8,
//
// Summary:
// The pixel data uses an RGB color space.
ColorSpaceRgb = 16,
//
// Summary:
// The pixel data uses a CMYK color space.
ColorSpaceCmyk = 32,
//
// Summary:
// The pixel data is grayscale.
ColorSpaceGray = 64,
//
// Summary:
// Specifies that the image is stored using a YCBCR color space.
ColorSpaceYcbcr = 128,
//
// Summary:
// Specifies that the image is stored using a YCCK color space.
ColorSpaceYcck = 256,
//
// Summary:
// Specifies that dots per inch information is stored in the image.
HasRealDpi = 4096,
//
// Summary:
// Specifies that the pixel size is stored in the image.
HasRealPixelSize = 8192,
//
// Summary:
// The pixel data is read-only.
ReadOnly = 65536,
//
// Summary:
// The pixel data can be cached for faster access.
Caching = 131072
}