Write special UTF8 characters in MigraDoc

2019-08-23 05:33发布

问题:

I want to write the "█"-character in a MigraDoc pdf file. The following code doesn't show the character. Here is a small part of my code.

PdfDocumentRenderer pdfRenderer = new PdfDocumentRenderer(false, embedding);
row.Cells[1].AddParagraph().AddFormattedText("aaaaa \u2588", new Font("Arial Unicode MS"));

回答1:

Make sure to pass true to the c'tor of PdfDocumentRenderer to activate Unicode for rendering.

A small part of my code:

// Create a renderer for the MigraDoc document.
var pdfRenderer = new PdfDocumentRenderer(true) { Document = doc };

More code here:
http://www.pdfsharp.net/wiki/HelloMigraDoc-sample.ashx