@@ -19,9 +19,8 @@ public enum TiffBitsPerPixel
19
19
Bit4 = 4 ,
20
20
21
21
/// <summary>
22
- /// 6 bits per pixel. 2 bit for each color channel.
23
- ///
24
- /// Note: The TiffEncoder does not yet support 2 bits per color channel and will default to 24 bits per pixel instead.
22
+ /// <para>6 bits per pixel. 2 bit for each color channel.</para>
23
+ /// <para>Note: The TiffEncoder does not yet support 2 bits per color channel and will default to 24 bits per pixel instead.</para>
25
24
/// </summary>
26
25
Bit6 = 6 ,
27
26
@@ -31,30 +30,26 @@ public enum TiffBitsPerPixel
31
30
Bit8 = 8 ,
32
31
33
32
/// <summary>
34
- /// 10 bits per pixel, for gray images.
35
- ///
36
- /// Note: The TiffEncoder does not yet support 10 bits per pixel and will default to 24 bits per pixel instead.
33
+ /// <para>10 bits per pixel, for gray images.</para>
34
+ /// <para>Note: The TiffEncoder does not yet support 10 bits per pixel and will default to 24 bits per pixel instead.</para>
37
35
/// </summary>
38
36
Bit10 = 10 ,
39
37
40
38
/// <summary>
41
- /// 12 bits per pixel. 4 bit for each color channel.
42
- ///
43
- /// Note: The TiffEncoder does not yet support 4 bits per color channel and will default to 24 bits per pixel instead.
39
+ /// <para>12 bits per pixel. 4 bit for each color channel.</para>
40
+ /// <para>Note: The TiffEncoder does not yet support 4 bits per color channel and will default to 24 bits per pixel instead.</para>
44
41
/// </summary>
45
42
Bit12 = 12 ,
46
43
47
44
/// <summary>
48
- /// 14 bits per pixel, for gray images.
49
- ///
50
- /// Note: The TiffEncoder does not yet support 14 bits per pixel images and will default to 24 bits per pixel instead.
45
+ /// <para>14 bits per pixel, for gray images.</para>
46
+ /// <para>Note: The TiffEncoder does not yet support 14 bits per pixel images and will default to 24 bits per pixel instead.</para>
51
47
/// </summary>
52
48
Bit14 = 14 ,
53
49
54
50
/// <summary>
55
- /// 16 bits per pixel, for gray images.
56
- ///
57
- /// Note: The TiffEncoder does not yet support 16 bits per color channel and will default to 16 bits grayscale instead.
51
+ /// <para>16 bits per pixel, for gray images.</para>
52
+ /// <para>Note: The TiffEncoder does not yet support 16 bits per color channel and will default to 16 bits grayscale instead.</para>
58
53
/// </summary>
59
54
Bit16 = 16 ,
60
55
@@ -64,9 +59,8 @@ public enum TiffBitsPerPixel
64
59
Bit24 = 24 ,
65
60
66
61
/// <summary>
67
- /// 30 bits per pixel. 10 bit for each color channel.
68
- ///
69
- /// Note: The TiffEncoder does not yet support 10 bits per color channel and will default to 24 bits per pixel instead.
62
+ /// <para>30 bits per pixel. 10 bit for each color channel.</para>
63
+ /// <para>Note: The TiffEncoder does not yet support 10 bits per color channel and will default to 24 bits per pixel instead.</para>
70
64
/// </summary>
71
65
Bit30 = 30 ,
72
66
@@ -76,23 +70,26 @@ public enum TiffBitsPerPixel
76
70
Bit32 = 32 ,
77
71
78
72
/// <summary>
79
- /// 36 bits per pixel. 12 bit for each color channel.
80
- ///
81
- /// Note: The TiffEncoder does not yet support 12 bits per color channel and will default to 24 bits per pixel instead.
73
+ /// <para>36 bits per pixel. 12 bit for each color channel.</para>
74
+ /// <para>Note: The TiffEncoder does not yet support 12 bits per color channel and will default to 24 bits per pixel instead.</para>
82
75
/// </summary>
83
76
Bit36 = 36 ,
84
77
85
78
/// <summary>
86
- /// 42 bits per pixel. 14 bit for each color channel.
87
- ///
88
- /// Note: The TiffEncoder does not yet support 14 bits per color channel and will default to 24 bits per pixel instead.
79
+ /// <para>42 bits per pixel. 14 bit for each color channel.</para>
80
+ /// <para>Note: The TiffEncoder does not yet support 14 bits per color channel and will default to 24 bits per pixel instead.</para>
89
81
/// </summary>
90
82
Bit42 = 42 ,
91
83
92
84
/// <summary>
93
- /// 48 bits per pixel. 16 bit for each color channel.
94
- ///
95
- /// Note: The TiffEncoder does not yet support 16 bits per color channel and will default to 24 bits per pixel instead.
85
+ /// <para>48 bits per pixel. 16 bit for each color channel.</para>
86
+ /// <para>Note: The TiffEncoder does not yet support 16 bits per color channel and will default to 24 bits per pixel instead.</para>
96
87
/// </summary>
97
88
Bit48 = 48 ,
89
+
90
+ /// <summary>
91
+ /// <para>64 bits per pixel. 16 bit for each color channel.</para>
92
+ /// <para>Note: The TiffEncoder does not yet support 16 bits per color channel and will default to 32 bits per pixel instead.</para>
93
+ /// </summary>
94
+ Bit64 = 64 ,
98
95
}
0 commit comments