forked from JimBobSquarePants/ImageProcessor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBitDepth.cs
More file actions
41 lines (35 loc) · 850 Bytes
/
Copy pathBitDepth.cs
File metadata and controls
41 lines (35 loc) · 850 Bytes
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
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
namespace ImageProcessor
{
/// <summary>
/// Provides enumeration for the available bit depths.
/// </summary>
internal enum BitDepth : long
{
/// <summary>
/// 1 bit per pixel
/// </summary>
Bit1 = 1L,
/// <summary>
/// 4 bits per pixel
/// </summary>
Bit4 = 4L,
/// <summary>
/// 8 bits per pixel
/// </summary>
Bit8 = 8L,
/// <summary>
/// 16 bits per pixel
/// </summary>
Bit16 = 16L,
/// <summary>
/// 24 bits per pixel
/// </summary>
Bit24 = 24L,
/// <summary>
/// 32 bits per pixel
/// </summary>
Bit32 = 32L
}
}