Good morning, i'm evaluating Spire Pdf Viewer, and with most of the pdf i've tested is working well. Unfortunately i'm stuck with a particular pdf file that it does not show the text part. In details the viewer shows only the images. The pdf file has been produced by Adobe Acrobat 9.0 during the generation of a analysis report of a sample pdf.
The sample program written in C# is:
private void Form1_Load(object sender, EventArgs e)
{
string pdfDoc = @"c:\Temp\miofile02_rapporto.pdf";
if (File.Exists(pdfDoc))
{
this.pdfDocumentViewer1.LoadFromFile(pdfDoc);
}
}
I attach the following files:
miofile02_rapporto.pdf // the pdf file that has the issue.
spire01.png // details of embedded fonts as resulting from the property page of Acrobat Reader.
spire02.png // screenshot of the result of sample program.
spire03.png // screenshot of the file rendering with Adobe Acrobat as it should be.
Thank you for your help.