I am trying to combine all the documents inside a list of books into a single book then export it as a single pdf. I'm currently using the c# code:

var tempBook = _myInDesign.Books.Add(Path.Combine(_inddPath, "temp.indb"));
tempBook.AutomaticPagination = false;

foreach (var indbBookFilename in dirInfo)
{
      var indbBook = ((Book)_myInDesign.Open(indbBookFilename));

      for (var index = 1; index < indbBook.BookContents.Count + 1; index++)
      {
                var documentName = ((BookContent) indbBook.BookContents[index]).FullName;

                tempBook.BookContents.Add(documentName);
      }


      indbBook.Close();
}

tempBook.Repaginate();
ExportPdf(tempBook, tempBook.FullName.Replace(".indb", ".pdf"));

tempBook.BookContents.Add(documentName) takes about 1-2 seconds the first time then continuesly increases until it takes a few minutes to add a single document. The current list of Books I'm using has about 60 chapters but some can have up to 150. At the 60th chapter it takes about 15 minutes to add a single document is there somthing i can turn off to make this quicker

Thanks for any help or insights

link|improve this question

It's likely that on each BookContents.Add(..) call, the whole document is having to be rewritten, incorporating any changes made so far. Can you 'buffer' the writes, so you are writing, say, 10 chapters at a time? It would be interesting to then measure the performance change. – christofr Oct 13 '11 at 12:53
Thank you for the comment christofr I don't believe the interop allows you to add multiple documents to a book .Add doesn't have any overloads and BookContents does not have a setter – claybo.the.invincible Oct 13 '11 at 14:12
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.