Spire.PDF is a professional PDF library applied to creating, writing, editing, handling and reading PDF files without any external dependencies. Get free and professional technical support for Spire.PDF for .NET, Java, Android, C++, Python.

Fri May 07, 2021 4:47 am

Hello
I have a problem with line spacing of the EucrosiaUPC font.

how set line spacing EucrosiaUPC

Image

jame_piyawat2
 
Posts: 10
Joined: Fri May 07, 2021 4:36 am

Fri May 07, 2021 9:50 am

Hello,

Thanks for your inquiry. Please refer to the following code to draw text and set line spacing. If there is any question, please feel free to write back.
Code: Select all
//Create Pdf document
PdfDocument document = new PdfDocument();

//Add a page
PdfPageBase pdfPage = document.Pages.Add();
string text = "Spire.PDF for .NET is a professional PDF API applied to creating, writing, editing, handling and reading PDF files without any external dependencies within .NET ( C#, VB.NET, ASP.NET, .NET Core, Xamarin ) application. Using this .NET PDF library, you can implement rich capabilities to create PDF files from scratch or process existing PDF documents entirely through C#/VB.NET without installing Adobe Acrobat.";

//Define font
PdfTrueTypeFont font = new PdfTrueTypeFont(new Font("EucrosiaUPC", 16f));
PdfStringFormat format = new PdfStringFormat();

//Set line spacing
format.LineSpacing = 20f;
RectangleF rectangle = new RectangleF(0, 0, 500, 100);

//Draw string
pdfPage.Canvas.DrawString(text, font, PdfBrushes.Black, rectangle, format);

//Save document
document.SaveToFile("result.pdf",FileFormat.PDF);

Sincerely,
Annika
E-iceblue support team
User avatar

Annika.Zhou
 
Posts: 1651
Joined: Wed Apr 07, 2021 2:50 am

Fri May 07, 2021 10:39 am

Thanks for the reply. :D :D

Image

jame_piyawat2
 
Posts: 10
Joined: Fri May 07, 2021 4:36 am

Sat May 08, 2021 1:22 am

Hello,

Thank you for your feedback.
If you have other questions about using Spire.PDF in the future, please feel free to contact us.

Sincerely,
Annika
E-iceblue support team
User avatar

Annika.Zhou
 
Posts: 1651
Joined: Wed Apr 07, 2021 2:50 am

Return to Spire.PDF