How to duplicate pages effectively
Hi all,
we want to create 1000 page document from a single page template, hence we create pages using duplication.
"for (var i=1; i<noOfPages; i++){
myDocument.pages.item(0).duplicate(LocationOptions.AT_END,myFirstPage);
}"
During debugging we found the page creation time increases linearliy with increase in page
ie creation of page is as following
1st - 1sec
2nd - 1sec
3rd - 1sec
.
.
.
10th - 3sec
.
.
.
100th-40sec.
Is there an alternate approach to acheive the above work ?
