French Accent Letters

These different converters modules enables you to convert your existin documents to the above formats. These are all parts of our Document Converter produt.
Here you can post all the installation and usage issues related to the document converters including our latest DOCX Converter
Post Reply
Evgheni
Posts: 2
Joined: Fri Mar 22 2013

French Accent Letters

Post by Evgheni »

I have a pdf file that contains text with all french accent characters:
ùûüÿ€’“”«»–—àâæçéèêëïîôœ

While saving in 'zipped xaml', 'excel' and other formats:
Characters à â æ ç ï î ô are converted to spaces
Characters é è ê ë are converted to symbols: ø ß Ø Ł Œ º

Code:

acPDFCreatorLib.Initialize();
Document = new IacDocument();
Document.SetLicenseKey("Silverlight Evaluation", "...");
Document.Open(PdfStream, "");
var xaml = Document.Attribute("XAML").Value as byte[];

Document.ExportToXPS("c:\\xaml.xps", IacXPSExportOptions.acXPSExportOptionsNone);
Document.ExportToHTML("c:\\xaml.html", IacHtmlExportOption.acHtmlExportOptionForceImagesToPng);
Document.ExportToExcel("c:\\xaml.xls", IacExcelExportOption.acExcelExportOptionSingleSheet);

using (var file = new FileStream("c:\\xaml.zip", FileMode.Create))
{
file.Write(xaml, 0, xaml.Length);
};

Update:
This problem seems to occur only with pdf files, created with Crystal Reports. For instance Microsoft word creates files that are converted correctly. Can you please point me where the problem is? (I cannot attach file to this post because of the error Could not upload attachment to ./files/17525_a6cab48efcf1a543fdc4772d04cbc3e0.)
Post Reply