Received : 2007/10/17 08:03:55
Message : Hello, Support!
I’ve encountered problem saving documents in PDF. When I try to save text in Cyrillic encoding, nothing appending to the result document, every cyrillic symbol will be missing.
Pdf pdf1 = new Pdf();
Aspose.Pdf.Section sec1 = pdf1.Sections.Add();
sec1.Paragraphs.Add(new Text("Текстовое сообщение"));
pdf1.Save("d:/temp.pdf");
But if I load document with cyrillic words from XML, and then save it to PDF – everything will be OK.
Pdf pdf1 = new Pdf();
pdf1.BindXML("d:/temp.xml", null);
pdf1.Save("d:/temp.pdf");
Need your assistance to solve this problem
This message was posted using Aspose.Live 2 Forum