Updated examples and readme

This commit is contained in:
Marcin Ziąbek
2022-01-30 22:52:56 +01:00
parent ac29ed4794
commit 9a6b11ab85
7 changed files with 112 additions and 58 deletions
+4 -4
View File
@@ -15,7 +15,7 @@ namespace QuestPDF.Examples
RenderingTest
.Create()
.PageSize(PageSizes.A4)
.ProducePdf()
.ProduceImages()
.ShowResults()
.Render(container =>
{
@@ -23,15 +23,15 @@ namespace QuestPDF.Examples
{
var text = Placeholders.Paragraph();
foreach (var i in Enumerable.Range(0, 16))
foreach (var i in Enumerable.Range(2, 5))
{
column
.Item()
.MinimalBox()
.Border(1)
.Padding(5)
.Width(50 + i * 25)
.Height(25 + i * 5)
.Width(i * 40)
.Height(i * 20)
.ScaleToFit()
.Text(text);
}