| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- using System;
- using System.Linq;
- using System.Text;
- using NUnit.Framework;
- using QuestPDF.Examples.Engine;
- using QuestPDF.Fluent;
- using QuestPDF.Helpers;
- using QuestPDF.Infrastructure;
- namespace QuestPDF.Examples
- {
- public class TextExamples
- {
- [Test]
- public void SimpleTextBlock()
- {
- RenderingTest
- .Create()
- .PageSize(500, 300)
-
- .ProduceImages()
- .ShowResults()
- .Render(container =>
- {
- container
- .Padding(5)
- .MinimalBox()
- .Border(1)
- .Padding(10)
- .Text(text =>
- {
- text.DefaultTextStyle(TextStyle.Default.Size(20));
- text.Span("This is a normal text, followed by an ");
- text.Span("underlined red text.", TextStyle.Default.Size(20).Color(Colors.Red.Medium).Underline());
- });
- });
- }
-
- [Test]
- public void ParagraphSpacing()
- {
- RenderingTest
- .Create()
- .PageSize(500, 300)
- .ProduceImages()
- .ShowResults()
- .Render(container =>
- {
- container
- .Padding(5)
- .MinimalBox()
- .Border(1)
- .Padding(10)
- .Text(text =>
- {
- text.ParagraphSpacing(10);
-
- foreach (var i in Enumerable.Range(1, 3))
- {
- text.Span($"Paragraph {i}: ", TextStyle.Default.SemiBold());
- text.Line(Placeholders.Paragraph());
- }
- });
- });
- }
-
- [Test]
- public void CustomElement()
- {
- RenderingTest
- .Create()
- .PageSize(500, 200)
- .ProduceImages()
- .ShowResults()
- .Render(container =>
- {
- container
- .Padding(5)
- .MinimalBox()
- .Border(1)
- .Padding(10)
- .Text(text =>
- {
- text.DefaultTextStyle(TextStyle.Default.Size(20));
- text.Span("This is a random image aligned to the baseline: ");
-
- text.Element()
- .PaddingBottom(-6)
- .Height(24)
- .Width(48)
- .Image(Placeholders.Image);
-
- text.Span(".");
- });
- });
- }
-
- [Test]
- public void TextElements()
- {
- RenderingTest
- .Create()
- .PageSize(PageSizes.A4)
- .ProducePdf()
- .ShowResults()
- .Render(container =>
- {
- container
- .Padding(20)
- .Padding(10)
- .MinimalBox()
- .Border(1)
- .Padding(5)
- .Padding(10)
- .Text(text =>
- {
- text.DefaultTextStyle(TextStyle.Default);
- text.AlignLeft();
- text.ParagraphSpacing(10);
- text.Line(Placeholders.LoremIpsum());
- text.Span($"This is target text that should show up. {DateTime.UtcNow:T} > This is a short sentence that will be wrapped into second line hopefully, right? <", TextStyle.Default.Underline());
- });
- });
- }
-
- [Test]
- public void Textcolumn()
- {
- RenderingTest
- .Create()
- .PageSize(PageSizes.A4)
- .ProducePdf()
- .ShowResults()
- .Render(container =>
- {
- container
- .Padding(20)
- .Padding(10)
- .MinimalBox()
- .Border(1)
- .Padding(5)
- .Padding(10)
- .Text(text =>
- {
- text.DefaultTextStyle(TextStyle.Default);
- text.AlignLeft();
- text.ParagraphSpacing(10);
-
- foreach (var i in Enumerable.Range(1, 100))
- text.Line($"{i}: {Placeholders.Paragraph()}");
- });
- });
- }
- [Test]
- public void SpaceIssue()
- {
- RenderingTest
- .Create()
- .PageSize(PageSizes.A4)
- .ProducePdf()
- .ShowResults()
- .Render(container =>
- {
- container
- .Padding(20)
- .Padding(10)
- .MinimalBox()
- .Border(1)
- .Padding(5)
- .Padding(10)
- .Text(text =>
- {
- text.DefaultTextStyle(TextStyle.Default);
- text.AlignLeft();
- text.ParagraphSpacing(10);
- text.Span(Placeholders.LoremIpsum());
- text.EmptyLine();
- text.Span("This text is a normal text, ");
- text.Span("this is a bold text, ", TextStyle.Default.Bold());
- text.Span("this is a red and underlined text, ", TextStyle.Default.Color(Colors.Red.Medium).Underline());
- text.Span("and this is slightly bigger text.", TextStyle.Default.Size(16));
- text.EmptyLine();
- text.Span("The new text element also supports injecting custom content between words: ");
- text.Element().PaddingBottom(-10).Height(16).Width(32).Image(Placeholders.Image);
- text.Span(".");
- text.EmptyLine();
- text.Span("This is page number ");
- text.CurrentPageNumber();
- text.Span(" out of ");
- text.TotalPages();
- text.EmptyLine();
- text.ExternalLocation("Please visit QuestPDF website", "https://www.questpdf.com");
- text.EmptyLine();
- text.Span(Placeholders.Paragraphs());
-
-
- text.EmptyLine();
- text.Span(Placeholders.Paragraphs(), TextStyle.Default.Italic());
-
- text.Line("This is target text that does not show up. " + Placeholders.Paragraph());
- });
- });
- }
- [Test]
- public void HugeList()
- {
- RenderingTest
- .Create()
- .PageSize(PageSizes.A4)
- .ProducePdf()
- .ShowResults()
- .Render(container =>
- {
- container
- .Padding(20)
- .Padding(10)
- .MinimalBox()
- .Border(1)
- .Padding(5)
- .Padding(10)
- .Text(text =>
- {
- text.DefaultTextStyle(TextStyle.Default);
- text.AlignLeft();
- text.ParagraphSpacing(10);
- text.Span("This text is a normal text, ");
- text.Span("this is a bold text, ", TextStyle.Default.Bold());
- text.Span("this is a red and underlined text, ", TextStyle.Default.Color(Colors.Red.Medium).Underline());
- text.Span("and this is slightly bigger text.", TextStyle.Default.Size(16));
-
- text.Span("The new text element also supports injecting custom content between words: ");
- text.Element().PaddingBottom(-10).Height(16).Width(32).Image(Placeholders.Image);
- text.Span(".");
-
- text.EmptyLine();
-
- foreach (var i in Enumerable.Range(1, 100))
- {
- text.Line($"{i}: {Placeholders.Paragraph()}");
- text.ExternalLocation("Please visit QuestPDF website", "https://www.questpdf.com");
-
- text.Span("This is page number ");
- text.CurrentPageNumber();
- text.Span(" out of ");
- text.TotalPages();
-
- text.EmptyLine();
- }
- });
- });
- }
- }
- }
|