Missing bookmarks after merge

Last post 09-09-2009, 6:23 AM by shahzad.latif. 19 replies.
Page 2 of 2 (20 items)   < Previous 1 2
Sort Posts: Previous Next
  •  08-20-2009, 10:10 AM 194200 in reply to 193491

    Re: Missing bookmarks after merge

    Hi Daniel,

    We'll provide you a hotfix for this issue at the end of this month (August). You'll be updated via this forum.

    If you find any other issues or have some more questions, please do let us know.
    Regards,


    Shahzad Latif - [Follow me on Twitter!]
    Support Developer/Developer Evangelist
    Aspose Sialkot Team
    Aspose - Your File Format Experts

    Keep in touch! We're on Twitter and Facebook
     
  •  09-01-2009, 4:08 AM 196021 in reply to 194200

    Re: Missing bookmarks after merge

    Hi

    How do I access the hotfix?

     

    /Daniel

     
  •  09-02-2009, 1:20 PM 196403 in reply to 184435

    Re: Missing bookmarks after merge

    The issues you have found earlier (filed as 9582) have been fixed in this update.


    This message was posted using Notification2Forum from Downloads module by aspose.notifier.
     
  •  09-07-2009, 4:08 AM 196926 in reply to 196021

    Re: Missing bookmarks after merge

    Attachment: Present (inaccessible)

    Hi

    Installed the hotifx and the bookmarks are still there after a mege, but... there seams to be a problem with the layout see attachments. some squares are added on each bookmark.

    /Daniel

     
  •  09-09-2009, 6:23 AM 197280 in reply to 196926

    Re: Missing bookmarks after merge

    Hi Daniel,

    I have tested the issue at my end but couldn't notice the problem. I have tested with Aspose.Pdf.Kit 3.6.0.0. Can you please make sure that you're using the latest version? Also, try using the following code; I have used this snippet at my end:
      int[] pages = new int[] { 1 };
                                  int location = 0;

                                  PdfFileEditor pdfEditor = new PdfFileEditor();
                                  FileStream firstpageStream = new FileStream("singlepage.pdf",FileMode.Open, FileAccess.Read);
                                  FileStream contentStream = new FileStream("input.pdf",FileMode.Open, FileAccess.Read);
                                  MemoryStream tempStream = new MemoryStream();
                                  MemoryStream outStream = new MemoryStream();

                                  //create merged PDF document
                                  pdfEditor.SplitToEnd(contentStream, 2, tempStream);
                                  pdfEditor.Insert(tempStream, location, firstpageStream, pages, outStream);

                                  FileStream output = new FileStream("output.pdf", FileMode.Create, FileAccess.Write);

                                  outStream.Seek(0, SeekOrigin.Begin);
                                  byte[] data = new byte[outStream.Length];
                                  outStream.Read(data, 0, data.Length);
                                  output.Write(data, 0, data.Length);

                                  firstpageStream.Close();
                                  contentStream.Close();
                                  tempStream.Close();
                                  output.Close();


    If problem persists then please share a sample project which can reproduce the problem. Also, any other details would be helpful i.e. OS/Culture etc.

    We're sorry for the inconvenience.
    Regards,


    Shahzad Latif - [Follow me on Twitter!]
    Support Developer/Developer Evangelist
    Aspose Sialkot Team
    Aspose - Your File Format Experts

    Keep in touch! We're on Twitter and Facebook
     
Page 2 of 2 (20 items)   < Previous 1 2
View as RSS news feed in XML