Sign UpSign Up   Sign InSign In Welcome Guest,
Live Chat Live Chat

Header table row on each page dosent work when doc is converted to PDF

Last post 04-30-2011, 5:22 PM by aspose.notifier. 28 replies.
Page 1 of 2 (29 items)   1 2 Next >
Sort Posts: Previous Next
  •  02-27-2008, 12:31 PM 115206

    Header table row on each page dosent work when doc is converted to PDF

    Hello

    If I save a document in word-format with a table that spans over several pages the table header row is repeated as it should. But if I convert it to PDF the table header row only show up on the first page?

    Is there a way to make this work?

     
  •  02-28-2008, 4:15 AM 115298 in reply to 115206

    Re: Header table row on each page dosent work when doc is converted to PDF

    Hi

     

    Thanks for your inquiry. Could you please attach your document for testing?(Only you and Aspose staff members can download it).

     

    I tried to do this using Aspose.Words 5.0.2 and Aspose.Pdf 3.6.2.0 and all works fine on my side.

     

    Best regards.


    Alexey Noskov
    Developer/Technical Support
    Aspose Auckland Team
     
  •  02-28-2008, 5:18 AM 115309 in reply to 115298

    Re: Header table row on each page dosent work when doc is converted to PDF

    Attachment: Present (inaccessible)
    Se the attached document
     
  •  02-28-2008, 2:41 PM 115405 in reply to 115309

    Re: Header table row on each page dosent work when doc is converted to PDF

    Hello!

     

    Thank you for your inquiry. I have reproduced this issue and logged it as #4511 in our defect database. We’ll investigate it and try to fix. Notification will be posted here in the thread on any progress.

     

    As a workaround you can try converting from DOC to PDF. This works fine. When I saved your document from MS Word as DOC the issue dissolved.

     

    Regards,
    Viktor Sazhaev
    Software Engineer, Aspose Auckland Team
     
  •  03-03-2008, 8:45 AM 115855 in reply to 115405

    Re: Header table row on each page dosent work when doc is converted to PDF

    The problem is that I don't save the document first. I convert it directly to pdf.

    List<MemoryStream> streamColl = new List<MemoryStream>();

    streamColl.Add(SendToBrowserAsPdf(doc));

    FileStream outStream = new FileStream("C:\\Invoices.pdf", FileMode.Create);

    PdfFileEditor pdfEditor = new PdfFileEditor();

    pdfEditor.Concatenate(streamColl.ToArray(), outStream);

    outStream.Close();

    private MemoryStream SendToBrowserAsPdf(Document doc)

    {

    MemoryStream stream = new MemoryStream();

    doc.Save(stream, SaveFormat.AsposePdf);

    stream.Seek(0, SeekOrigin.Begin);

    XmlDocument xmlDoc = new XmlDocument();

    xmlDoc.Load(stream);

    Aspose.Pdf.Pdf pdf = new Aspose.Pdf.Pdf();

    pdf.IsImagesInXmlDeleteNeeded = true;

    pdf.BindXML(xmlDoc, null);

    pdf.IsTruetypeFontMapCached = false;

    MemoryStream stream2 = new MemoryStream();

    pdf.Save(stream2);

    return stream2;

    }

     
  •  03-03-2008, 9:08 AM 115857 in reply to 115855

    Re: Header table row on each page dosent work when doc is converted to PDF

    Hello!

     

    I mean if you have the possibility to change source documents manually then you could save this one as DOC from MS Word. This is just a workaround until we have fixed the issue. Of course, if there are several hundreds of such documents or if you are processing documents automatically acquired from the third parties then you only have to wait for the issue resolution.

     

    Regards,
    Viktor Sazhaev
    Software Engineer, Aspose Auckland Team
     
  •  07-01-2009, 1:36 PM 186454 in reply to 115857

    Re: Header table row on each page dosent work when doc is converted to PDF

    Hello,

    I'm trying to do same thing as original post - table header repeated per page and export  the document pdf.

    The word doc itself is repeating the table header if I look at it in Word but converted Pdf does NOT have repeated table headers.

    Is this issue resolved? If so what do I need to do to have table header repeated per page?


    Thanks
     
  •  07-01-2009, 1:45 PM 186458 in reply to 186454

    Re: Header table row on each page dosent work when doc is converted to PDF

    Hi

     

    Thanks for your request. Do you use legacy method (Aspose.Words+Aspose.Pdf) or new method (Document.SaveToPdf) to convert your document to PDF? Please attach your document here for testing and code you use to convert it to PDF.

     

    Best regards.


    Alexey Noskov
    Developer/Technical Support
    Aspose Auckland Team
     
  •  07-03-2009, 5:25 AM 186748 in reply to 186458

    Re: Header table row on each page dosent work when doc is converted to PDF .NET

    Attachment: Present (inaccessible)
    Hi

    I am also having this problem using Aspose.Words 6.5.0.0 and the SaveToPDF method. We really need a solution to this problem. Right now I have to open the document using Word Automation and print it using Adobe Distiller.

    I created a sample application for you to test. It uses a Word Template with the first row set as "Repeat as header Row". 

    When I save the document in Word format and open it using Microsoft Word, the header appears in every page. However, if I use Aspose.Words to either print it directly or save it to PDF using the SaveToPDF() method, the header row is lost.


     
  •  07-03-2009, 6:16 AM 186757 in reply to 186748

    Re: Header table row on each page dosent work when doc is converted to PDF

    Hi,

     

    Thank you for additional information. Unfortunately, Heading rows are not supported during rendering and converting to PDF. I linked your request to the appropriate issue. You will be notified as soon as this feature is implemented.

     

    Best regards.


    Alexey Noskov
    Developer/Technical Support
    Aspose Auckland Team
     
  •  10-19-2009, 11:23 AM 203079 in reply to 186748

    Re: Header table row on each page dosent work when doc is converted to PDF

    Hi

    I am having this problem too. Is there any estimate for a fixed date yet?

     
  •  10-19-2009, 12:46 PM 203091 in reply to 203079

    Re: Header table row on each page dosent work when doc is converted to PDF

    Hi

     

    Thanks for your inquiry. Currently I cannot provide you any reliable estimate regarding this issue. You will be notified as soon as it is fixed.

     

    Best regards,


    Andrey Noskov
    Developer/Technical Support
    Aspose Auckland Team
     
  •  10-26-2009, 7:12 AM 204024 in reply to 203091

    Re: Header table row on each page dosent work when doc is converted to PDF

    Ok, can you elaborate on the reason for this fix taking so long? As you can see it was originally raised over a year and a half ago.

    Is there some fundamental problem that is stopping you implementing this functionality? Getting header rows to repeat is a fairly standard feature of Word, and judging by the amount of time this issue has been around, it looks to me like you are having major problems implementing it.

     
  •  10-26-2009, 10:36 AM 204054 in reply to 204024

    Re: Header table row on each page dosent work when doc is converted to PDF

    Hi

    Thanks for your inquiry. Yes, you are right regarding this feature, it is complex. However, this is not the main reason why it was postponed.  We postponed it because currently we have to work on other very important features. I apologize for inconvenience.
    This feature is scheduled on the beginning of the next year. You will be notified as soon as it is supported.

    Best regards,


    Andrey Noskov
    Developer/Technical Support
    Aspose Auckland Team
     
  •  10-27-2009, 4:39 AM 204184 in reply to 204054

    Re: Header table row on each page dosent work when doc is converted to PDF

    Thanks for your reply Andrey. As long as I know it will be done at some stage, thats fine for now.
     
Page 1 of 2 (29 items)   1 2 Next >
View as RSS news feed in XML