Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #27037

    We are experiencing an interesting issue during HTML to PDF conversion where one table border is appearing on two separate pages after a page break. I’ve attached the HTML file and the converted PDF file for your reference. Also, here are the other details you may need:

    Java Runtime Version: 6
    PD4ML Version: Newest recommended for .NET 2.0 (1.0.5080.21062)
    Operating System: Windows 7
    App Server: Local machine
    .NET Code Snippet:
    var pd4ml = new org.zefer.pd4ml.PD4ML();
    pd4ml.HtmlWidth = 780;
    pd4ml.PageInsets = new System.Drawing.Rectangle(20, 20, 20, 20);
    pd4ml.PageSize = org.zefer.pd4ml.PD4Constants.A4;
    pd4ml.enableDebugInfo();
    var tempFileName = GetTempFileName(“pd4ml”);

    using (var fs = new FileStream(tempFileName, FileMode.Create, FileAccess.Write))
    {
    pd4ml.render(url, fs);
    }

    Process.Start(tempFileName);

    #29808

    @277opersuser wrote:

    We are experiencing an interesting issue during HTML to PDF conversion where one table border is appearing on two separate pages after a page break. I’ve attached the HTML file and the converted PDF file for your reference. Also, here are the other details you may need:

    So, do you means you need to delete this table border on a second page?

Viewing 2 posts - 1 through 2 (of 2 total)

The forum ‘HTML/CSS rendering issues’ is closed to new topics and replies.