This is a migrated thread and some comments may be shown as answers.

Adding symbols for "registered" and "copyright" to PFD

1 Answer 101 Views
PdfProcessing
This is a migrated thread and some comments may be shown as answers.
Jason
Top achievements
Rank 1
Jason asked on 12 Aug 2019, 06:57 PM

How do you add symbols, specifically "registered" and "copyright" to the pdf export?  Id displays in Visual Studio when creating the text, but it doesn't display after the PDF is generated.

 

Thanks!

1 Answer, 1 is accepted

Sort by
0
Peshito
Telerik team
answered on 15 Aug 2019, 10:43 AM
Hi Jason,

I tried reproducing the issue but to no avail. Please find a sample code I used below:
RadFixedDocument document = new RadFixedDocument();
Block symbolsBlock = new Block();
symbolsBlock.TextProperties.FontSize = 30;
symbolsBlock.InsertText("© ®");
 
RadFixedDocumentEditor editor = new RadFixedDocumentEditor(document);
editor.InsertBlock(symbolsBlock);
 
PdfFormatProvider provider = new PdfFormatProvider();
using (Stream output = File.Create("Symbols.pdf"))
{
    provider.Export(document, output);
}
Could you update the code so the issue becomes reproducible or share your runnable sample?

Regards,
Peshito
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
PdfProcessing
Asked by
Jason
Top achievements
Rank 1
Answers by
Peshito
Telerik team
Share this question
or