@@ -72,7 +72,7 @@ private ImageMetadata(ImageMetadata other)
72
72
73
73
/// <summary>
74
74
/// Gets or sets the resolution of the image in x- direction.
75
- /// It is defined as the number of dots per inch and should be an positive value.
75
+ /// It is defined as the number of dots per <see cref="ResolutionUnits"/> and should be an positive value.
76
76
/// </summary>
77
77
/// <value>The density of the image in x- direction.</value>
78
78
public double HorizontalResolution
@@ -90,7 +90,7 @@ public double HorizontalResolution
90
90
91
91
/// <summary>
92
92
/// Gets or sets the resolution of the image in y- direction.
93
- /// It is defined as the number of dots per inch and should be an positive value.
93
+ /// It is defined as the number of dots per <see cref="ResolutionUnits"/> and should be an positive value.
94
94
/// </summary>
95
95
/// <value>The density of the image in y- direction.</value>
96
96
public double VerticalResolution
@@ -108,10 +108,28 @@ public double VerticalResolution
108
108
109
109
/// <summary>
110
110
/// Gets or sets unit of measure used when reporting resolution.
111
- /// 00 : No units; width:height pixel aspect ratio = Ydensity:Xdensity
112
- /// 01 : Pixels per inch (2.54 cm)
113
- /// 02 : Pixels per centimeter
114
- /// 03 : Pixels per meter
111
+ /// <list type="table">
112
+ /// <listheader>
113
+ /// <term>Value</term>
114
+ /// <description>Unit</description>
115
+ /// </listheader>
116
+ /// <item>
117
+ /// <term>AspectRatio (00)</term>
118
+ /// <description>No units; width:height pixel aspect ratio = Ydensity:Xdensity</description>
119
+ /// </item>
120
+ /// <item>
121
+ /// <term>PixelsPerInch (01)</term>
122
+ /// <description>Pixels per inch (2.54 cm)</description>
123
+ /// </item>
124
+ /// <item>
125
+ /// <term>PixelsPerCentimeter (02)</term>
126
+ /// <description>Pixels per centimeter</description>
127
+ /// </item>
128
+ /// <item>
129
+ /// <term>PixelsPerMeter (03)</term>
130
+ /// <description>Pixels per meter (100 cm)</description>
131
+ /// </item>
132
+ /// </list>
115
133
/// </summary>
116
134
public PixelResolutionUnit ResolutionUnits { get ; set ; }
117
135
0 commit comments