After-merge adjustments

This commit is contained in:
MarcinZiabek
2023-05-15 01:19:17 +02:00
parent fcef2b45d1
commit 312e94a4bd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -254,7 +254,7 @@ namespace QuestPDF.Drawing
{ {
foreach (var textBlockElement in textBlock.Items.OfType<TextBlockElement>()) foreach (var textBlockElement in textBlock.Items.OfType<TextBlockElement>())
{ {
textBlockElement.Element.ApplyDefaultImageConfiguration(settings); textBlockElement.Element.ApplyDefaultImageConfiguration(imageRasterDpi, imageCompressionQuality);
} }
} }
}); });
@@ -25,7 +25,7 @@
/// 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 144. /// Default value is 144.
/// </summary> /// </summary>
public int RasterDpi { get; set; } = DefaultRasterDpi * 2; public int ImageRasterDpi { get; set; } = DefaultRasterDpi * 2;
public ContentDirection ContentDirection { get; set; } = ContentDirection.LeftToRight; public ContentDirection ContentDirection { get; set; } = ContentDirection.LeftToRight;