Browse Source

Text: shorten SkParagraph lifetime to reduce peak memory performance for documents containing many Text elements

Marcin Ziąbek 1 year ago
parent
commit
ecb58a773c
1 changed files with 4 additions and 0 deletions
  1. 4 0
      Source/QuestPDF/Elements/Text/TextBlock.cs

+ 4 - 0
Source/QuestPDF/Elements/Text/TextBlock.cs

@@ -130,7 +130,11 @@ namespace QuestPDF.Elements.Text
             CurrentTopOffset += takenHeight;
 
             if (CurrentLineIndex == LineMetrics.Length)
+            {
                 IsRendered = true;
+                Paragraph?.Dispose();
+                Paragraph = null;
+            }
             
             return;