Improved text rendering capabilities

This commit is contained in:
Marcin Ziąbek
2021-08-25 03:40:16 +02:00
parent 748b8f65f5
commit 6023b4de34
18 changed files with 400 additions and 371 deletions
+7 -2
View File
@@ -37,10 +37,15 @@ namespace QuestPDF.Examples.Engine
return this;
}
public RenderingTest PageSize(Size size)
{
Size = size;
return this;
}
public RenderingTest PageSize(int width, int height)
{
Size = new Size(width, height);
return this;
return PageSize(new Size(width, height));
}
public RenderingTest ProducePdf()