Hello,
I am using the following code to print the attached rtf file with the “Microsoft print to PDF” printer. The German Umlaut will be replaced with “?”
RtfLoadOptions l = new RtfLoadOptions
{
Encoding = Encoding.UTF8,
RecognizeUtf8Text = true
};
Document doc = new Document("C:\\Temp\\128330-10010 UStVA-44-2021.rtf", l);
doc.Print("Microsoft Print to PDF");
I am using Aspose.Words V23.1
What can I do to get the correct output?
128330-10010 UStVA-44-2021.zip (4.4 KB)