Adjusted xml documentation

This commit is contained in:
Marcin Ziąbek
2023-05-12 13:29:07 +02:00
parent 03e10d3d0a
commit 5d2d97097c
2 changed files with 7 additions and 7 deletions
+4 -4
View File
@@ -35,7 +35,7 @@ namespace QuestPDF.Fluent
/// The DPI (pixels-per-inch) at which images and features without native PDF support will be rasterized. /// The DPI (pixels-per-inch) at which images and features without native PDF support will be rasterized.
/// A larger DPI would create a PDF that reflects the original intent with better fidelity, but it can make for larger PDF files too, which would use more memory while rendering, and it would be slower to be processed or sent online or to printer. /// A larger DPI would create a PDF that reflects the original intent with better fidelity, but it can make for larger PDF files too, which would use more memory while rendering, and it would be slower to be processed or sent online or to printer.
/// When generating images, this parameter also controls the resolution of the generated content. /// When generating images, this parameter also controls the resolution of the generated content.
/// Default value is 72. /// Default value is 144.
/// </summary> /// </summary>
public ImageDescriptor WithRasterDpi(int dpi) public ImageDescriptor WithRasterDpi(int dpi)
{ {
@@ -45,9 +45,9 @@ namespace QuestPDF.Fluent
/// <summary> /// <summary>
/// Encoding quality controls the trade-off between size and quality. /// Encoding quality controls the trade-off between size and quality.
/// The value 101 corresponds to lossless encoding. /// When the image is opaque, it will be encoded using the JPEG format with the selected quality setting.
/// If this value is set to a value between 1 and 100, and the image is opaque, it will be encoded using the JPEG format with that quality setting. /// When the image contains an alpha channel, it is always encoded using the PNG format and this option is ignored.
/// The default value is 90 (very high quality). /// The default value is "very high quality".
/// </summary> /// </summary>
public ImageDescriptor WithCompressionQuality(ImageCompressionQuality quality) public ImageDescriptor WithCompressionQuality(ImageCompressionQuality quality)
{ {
@@ -13,9 +13,9 @@
/// <summary> /// <summary>
/// Encoding quality controls the trade-off between size and quality. /// Encoding quality controls the trade-off between size and quality.
/// The value 101 corresponds to lossless encoding. /// When the image is opaque, it will be encoded using the JPEG format with the selected quality setting.
/// If this value is set to a value between 1 and 100, and the image is opaque, it will be encoded using the JPEG format with that quality setting. /// When the image contains an alpha channel, it is always encoded using the PNG format and this option is ignored.
/// The default value is 90 (very high quality). /// The default value is "very high quality".
/// </summary> /// </summary>
public ImageCompressionQuality ImageCompressionQuality { get; set; } = ImageCompressionQuality.VeryHigh; public ImageCompressionQuality ImageCompressionQuality { get; set; } = ImageCompressionQuality.VeryHigh;