-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #397 from telerik/new-kb-inserting-special-symbols…
…-pdf-radpdfprocessing-edb732d7e0be4da39da3676e06ecdab3 Added new kb article inserting-special-symbols-pdf-radpdfprocessing
- Loading branch information
Showing
4 changed files
with
134 additions
and
2 deletions.
There are no files selected for viewing
Binary file added
BIN
+11.8 KB
knowledge-base/images/inserting-special-symbols-pdf-radpdfprocessing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
126 changes: 126 additions & 0 deletions
126
knowledge-base/inserting-special-symbols-pdf-radpdfprocessing.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
--- | ||
title: Inserting Special Symbols in PDF using RadPdfProcessing | ||
description: This article explains how to insert special symbols, such as "↓", in a PDF document using RadPdfProcessing. | ||
type: how-to | ||
page_title: Inserting Special Symbols in PDF using RadPdfProcessing | ||
slug: inserting-special-symbols-pdf-radpdfprocessing | ||
tags: radpdfprocessing, pdf, special symbols, insert, visual studio | ||
res_type: kb | ||
--- | ||
|
||
## Environment | ||
| Version | Product | Author | | ||
| --- | --- | ---- | | ||
| 2024.1.124 | RadPdfProcessing |[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)| | ||
|
||
## Description | ||
|
||
This article shows how to insert special symbols, such as "↓", in a PDF document using RadPdfProcessing. | ||
|
||
![Special Symbols in PdfProcessing](images/inserting-special-symbols-pdf-radpdfprocessing.png) | ||
|
||
## Solution | ||
|
||
When using the Telerik Document Processing's .NET Standard assemblies/NuGet packages and want to export a document to PDF format, the PdfProcessing library needs to have access to the specific font's data so that it can read it and add it to the PDF file. That is why, to allow the library to create and use fonts, you will need to provide an implementation of the FontsProviderBase abstract class and set this implementation to the FontsProvider property of FixedExtensibilityManager. | ||
|
||
```csharp | ||
|
||
|
||
using System.Diagnostics; | ||
using Telerik.Documents.Core.Fonts; | ||
using Telerik.Windows.Documents.Fixed.FormatProviders.Pdf; | ||
using Telerik.Windows.Documents.Fixed.Model; | ||
using Telerik.Windows.Documents.Fixed.Model.Editing; | ||
using Telerik.Windows.Documents.Fixed.Model.Editing.Tables; | ||
|
||
Telerik.Windows.Documents.Extensibility.FontsProviderBase fontsProvider = new FontsProvider(); | ||
Telerik.Windows.Documents.Extensibility.FixedExtensibilityManager.FontsProvider = fontsProvider; | ||
|
||
RadFixedDocument document = new RadFixedDocument(); | ||
RadFixedDocumentEditor editor = new RadFixedDocumentEditor(document); | ||
|
||
Table table = new Table(); | ||
TableRow row = table.Rows.AddTableRow(); | ||
TableCell valueCell = row.Cells.AddTableCell(); | ||
Block valueCellBlock = valueCell.Blocks.AddBlock(); | ||
valueCellBlock.InsertText(new FontFamily("Arial"),"36 °C"); | ||
row = table.Rows.AddTableRow(); | ||
valueCell = row.Cells.AddTableCell(); | ||
valueCellBlock = valueCell.Blocks.AddBlock(); | ||
valueCellBlock.InsertText(new FontFamily("Calibri"), "↓"); | ||
editor.InsertTable(table); | ||
|
||
string outputdDocumentName = "Exported.pdf"; | ||
if (File.Exists(outputdDocumentName)) | ||
{ | ||
File.Delete(outputdDocumentName); | ||
} | ||
|
||
PdfFormatProvider provider = new PdfFormatProvider(); | ||
using (Stream stream = new FileStream(outputdDocumentName, FileMode.OpenOrCreate)) | ||
{ | ||
provider.Export(document, stream); | ||
} | ||
|
||
Process.Start(new ProcessStartInfo() { FileName = outputdDocumentName, UseShellExecute = true }); | ||
|
||
internal class FontsProvider : Telerik.Windows.Documents.Extensibility.FontsProviderBase | ||
{ | ||
private readonly string fontFolder = Environment.GetFolderPath(Environment.SpecialFolder.Fonts); | ||
|
||
public override byte[] GetFontData(Telerik.Windows.Documents.Core.Fonts.FontProperties fontProperties) | ||
{ | ||
string fontFamilyName = fontProperties.FontFamilyName; | ||
bool isBold = fontProperties.FontWeight == Telerik.Documents.Core.Fonts.FontWeights.Bold; | ||
string fontFolder = Environment.GetFolderPath(Environment.SpecialFolder.Fonts); | ||
if (fontFamilyName == "Arial" && isBold) | ||
{ | ||
using (FileStream fileStream = File.OpenRead(fontFolder + "\\arialbd.ttf")) | ||
{ | ||
using (MemoryStream memoryStream = new MemoryStream()) | ||
{ | ||
fileStream.CopyTo(memoryStream); | ||
return memoryStream.ToArray(); | ||
} | ||
} | ||
} | ||
else if (fontFamilyName == "Arial") | ||
{ | ||
return this.GetFontDataFromFontFolder("arial.ttf"); | ||
} | ||
else if (fontFamilyName == "Calibri" && isBold) | ||
{ | ||
return this.GetFontDataFromFontFolder("calibrib.ttf"); | ||
} | ||
else if (fontFamilyName == "Calibri") | ||
{ | ||
return this.GetFontDataFromFontFolder("calibri.ttf"); | ||
} | ||
else if (fontFamilyName == "Segoe UI") | ||
{ | ||
return this.GetFontDataFromFontFolder("segoeui.ttf"); | ||
} | ||
|
||
return null; | ||
} | ||
|
||
private byte[] GetFontDataFromFontFolder(string fontFileName) | ||
{ | ||
using (FileStream fileStream = File.OpenRead(this.fontFolder + "\\" + fontFileName)) | ||
{ | ||
using (MemoryStream memoryStream = new MemoryStream()) | ||
{ | ||
fileStream.CopyTo(memoryStream); | ||
return memoryStream.ToArray(); | ||
} | ||
} | ||
} | ||
} | ||
|
||
``` | ||
|
||
## See Also | ||
- [Standard Fonts]({%slug radpdfprocessing-concepts-fonts%}) | ||
- [Cross-Platform Support]({%slug radpdfprocessing-cross-platform%}) | ||
- [Cross-Platform Support >> Fonts]({%slug radpdfprocessing-cross-platform-fonts%}) | ||
- [How to Implement FontsProvider]({%slug pdfprocessing-implement-fontsprovider%}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters