How to preserve EURO symbol in PDF.
How to preserve EURO symbol in PDF:
EURO symbol can be rendered by using the suitable TrueType font. Below is the code snippet that shows how to add an Euro symbol to the PDF document.
C#
// Creates new pdf document PdfDocument doc = new PdfDocument(); // Adds new page PdfPage page = doc.Pages.Add(); // Draw the Euro symbol using the true type font PdfTextElement text = new PdfTextElement("€", new PdfTrueTypeFont(new Font("Arial", 12, FontStyle.Bold))); text.Draw(page.Graphics); // Save the document and dispose it. doc.Save("Output.pdf"); doc.Close(true);
Sample Link:
https://www.syncfusion.com/downloads/support/directtrac/146113/ze/EuroSymbol-2085429548
Note:
Starting with v16.2.0.x, if you reference Syncfusion® assemblies from a trial setup or from the NuGet feed, include a license key in your projects. Refer to the link to learn about generating and registering the Syncfusion® license key in your application to use the components without a trial message.
Conclusion
I hope you enjoyed learning about How to create Excel exploded pie chart in C#, VB.NET.
You can refer to our PDF feature tour page to learn about its other groundbreaking feature representations. You can also explore our documentation to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums or feedback portal. We are always happy to assist you!