Spire.PDF is a professional PDF library applied to creating, writing, editing, handling and reading PDF files without any external dependencies. Get free and professional technical support for Spire.PDF for .NET, Java, Android, C++, Python.

Mon Sep 01, 2014 1:17 pm

Hello.
Just downloaded latest Spire.Pdf ( 3.1.9 ).
Trying to run demo source code ( table creating - /Spire.PDF/Demos/Table/PDF-SimpleTable-C-VB.NET.html ).

I've changed table headers to national words ( russian ) but i am getting wrong symbols.

Resulted pdf:

imageshack.com/i/pdpFIG1ap

Table and label uses same font. Label prints national chars good, while table header prints something strange
Here is my code:

Code: Select all
using System;
using System.Drawing;
using Spire.Pdf;
using Spire.Pdf.Graphics;
using Spire.Pdf.Tables;

internal class Program
{
    private static void Main(string[] args)
    {
        //Create a pdf document.
        PdfDocument doc = new PdfDocument();

        //margin
        PdfUnitConvertor unitCvtr = new PdfUnitConvertor();
        PdfMargins margin = new PdfMargins();
        margin.Top = unitCvtr.ConvertUnits(2.54f, PdfGraphicsUnit.Centimeter, PdfGraphicsUnit.Point);
        margin.Bottom = margin.Top;
        margin.Left = unitCvtr.ConvertUnits(3.17f, PdfGraphicsUnit.Centimeter, PdfGraphicsUnit.Point);
        margin.Right = margin.Left;

        // Create one page
        PdfPageBase page = doc.Pages.Add(PdfPageSize.A4, margin);

        float y = 10;

        //title
        PdfBrush brush1 = PdfBrushes.Black;
        PdfTrueTypeFont font1 = new PdfTrueTypeFont(new Font("Arial", 16f, FontStyle.Bold), true);
        PdfStringFormat format1 = new PdfStringFormat(PdfTextAlignment.Center);
        page.Canvas.DrawString("Список стран", font1, brush1, page.Canvas.ClientSize.Width/2, y, format1);
        y = y + font1.MeasureString("Country List", format1).Height;
        y = y + 5;

        String[] data
            =
        {
            "Имя;Столица;Континент;Площадь;Население",
            "Argentina;Buenos Aires;South America;2777815;32300003",
            "Bolivia;La Paz;South America;1098575;7300000",
            "Brazil;Brasilia;South America;8511196;150400000",
            "Canada;Ottawa;North America;9976147;26500000",
            "Chile;Santiago;South America;756943;13200000",
            "Colombia;Bagota;South America;1138907;33000000",
            "Cuba;Havana;North America;114524;10600000",
            "Ecuador;Quito;South America;455502;10600000",
            "El Salvador;San Salvador;North America;20865;5300000",
            "Guyana;Georgetown;South America;214969;800000",
            "Jamaica;Kingston;North America;11424;2500000",
            "Mexico;Mexico City;North America;1967180;88600000",
            "Nicaragua;Managua;North America;139000;3900000",
            "Paraguay;Asuncion;South America;406576;4660000",
            "Peru;Lima;South America;1285215;21600000",
            "United States of America;Washington;North America;9363130;249200000",
            "Uruguay;Montevideo;South America;176140;3002000",
            "Venezuela;Caracas;South America;912047;19700000"
        };

        String[][] dataSource
            = new String[data.Length][];
        for (int i = 0; i < data.Length; i++)
        {
            dataSource[i] = data[i].Split(';');
        }

        PdfTable table = new PdfTable();
        table.Style.CellPadding = 2;
        table.Style.HeaderSource = PdfHeaderSource.Rows;
        table.Style.HeaderRowCount = 1;
        table.Style.ShowHeader = true;
        table.DataSource = dataSource;

        PdfLayoutResult result = table.Draw(page, new PointF(0, y));
        y = y + result.Bounds.Height + 5;

        PdfBrush brush2 = PdfBrushes.Gray;
        PdfTrueTypeFont font2 = new PdfTrueTypeFont(new Font("Arial", 9f));
        page.Canvas.DrawString(String.Format("* {0} countries in the list.", data.Length - 1),
            font2, brush2, 5, y);

        //Save pdf file.
        doc.SaveToFile("SimpleTable.pdf");
        doc.Close();

        //Launching the Pdf file.
        System.Diagnostics.Process.Start("SimpleTable.pdf");
    }
}


sadgb
 
Posts: 4
Joined: Mon Jul 28, 2014 11:26 am

Tue Sep 02, 2014 3:05 am

Hello,

Thanks for your feedback.
We have noticed the issue you mentioned, which has been transferred to our Dev team, once there are any update, we will let you know immediately.
Sincerely,
Gary
E-iceblue support team
User avatar

Gary.zhang
 
Posts: 1380
Joined: Thu Apr 04, 2013 1:30 am

Sat Sep 13, 2014 7:41 am

we are still waiting for your reply.
we really like your software but we can't buy product with such awfull bug

sadgb
 
Posts: 4
Joined: Mon Jul 28, 2014 11:26 am

Mon Sep 15, 2014 2:57 am

Hello,

Thanks for your waiting.
The issue has been resolved, and our Test team is testing the newest hotfix, once the hotfix is available, we will inform you immediately.
Sincerely,
Gary
E-iceblue support team
User avatar

Gary.zhang
 
Posts: 1380
Joined: Thu Apr 04, 2013 1:30 am

Tue Sep 16, 2014 6:52 am

Hello,

Please download the newest hotfix as below and test it again. And you need to add the two lines codes in yours.
Code: Select all
table.Style.DefaultStyle.Font = new PdfTrueTypeFont(new Font("Arial", 9f),true);
table.Style.HeaderStyle.Font= new PdfTrueTypeFont(new Font("Arial", 9f),true);

http://www.e-iceblue.com/downloads/hot_ ... 3.1.31.zip
If there are any questions, welcome to get it back to us.
Sincerely,
Gary
E-iceblue support team
User avatar

Gary.zhang
 
Posts: 1380
Joined: Thu Apr 04, 2013 1:30 am

Return to Spire.PDF