PDFsharp & MigraDoc Foundation

PDFsharp - A .NET library for processing PDF & MigraDoc Foundation - Creating documents on the fly
It is currently Sat Apr 27, 2024 8:36 am

All times are UTC


Forum rules


Please read this before posting on this forum: Forum Rules



Post new topic Reply to topic  [ 4 posts ] 
Author Message
PostPosted: Fri Jul 25, 2008 6:23 pm 
Offline

Joined: Fri Jul 25, 2008 6:17 pm
Posts: 4
I created the following code to merge two pdfs into a single document. It works most of the time. However, one pdf throws an error when trying to retrieve the pagecount(bolded below). The error message says:key must be of type System.String.

Code:
 /// <summary>
        /// Merges two pdf into single document
        /// </summary>
        /// <param name="file"></param>
        /// <param name="title"></param>
        private void Merge(MemoryStream file, string title)
        {

            // Open the document to import pages from it.
            PdfDocument inputDocument = PdfReader.Open(file, PdfDocumentOpenMode.Import);


            // Iterate pages- Next line causes problems
            [b]int count = inputDocument.PageCount;[/b]
            for (int idx = 0; idx < count; idx++)
            {
                PdfPage page = inputDocument.Pages[idx];
                sourceDcoument.AddPage(page);
                if (idx == 0 && title.Length > 0)
                {
                    pageBookmarks.Add(title);
                }
                else
                {
                    pageBookmarks.Add(string.Empty);
                }
            }


        }


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Fri Jul 25, 2008 6:48 pm 
Offline

Joined: Fri Jul 25, 2008 6:17 pm
Posts: 4
Just to add on to the above message. I noticed this when I was debugging, I am not sure if this is related at all.

Object reference not set to an instance of an object.

at PdfSharp.Pdf.PdfDictionary.DictionaryElements.CreateDictionary(Type type, PdfDictionary oldDictionary)
at PdfSharp.Pdf.PdfDictionary.DictionaryElements.GetValue(String key, VCF options)
at PdfSharp.Pdf.Advanced.PdfCatalog.get_Outlines()
at PdfSharp.Pdf.PdfDocument.get_Outlines()


Any help?


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Mon Jul 28, 2008 8:13 am 
Offline
PDFsharp Guru
User avatar

Joined: Mon Oct 16, 2006 8:16 am
Posts: 3096
Location: Cologne, Germany
Which version of PDFsharp do you use?
If this problem also occurs with the current PDFsharp 1.2 then please provide us the PDF file that causes this error.

_________________
Regards
Thomas Hoevel
PDFsharp Team


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Thu Aug 14, 2008 5:32 pm 
Offline

Joined: Fri Jul 25, 2008 6:17 pm
Posts: 4
I upgraded to the newest version and it fixed this problem. Thanks!


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 373 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Privacy Policy, Data Protection Declaration, Impressum
Powered by phpBB® Forum Software © phpBB Group