Re: [iText-questions] Setting Local Coordinate System + duplicating PdfTemplate

2013-07-12 Thread 1T3XT BVBA
On 12/07/2013 8:33, bolek lolek wrote: Now i want to duplicate it 4 times and place different shapes on each of them. The whole idea of using a PdfTemplate instance, is that you can reuse it. Why would you duplicate it??? --

[iText-questions] Setting Local Coordinate System + duplicating PdfTemplate

2013-07-12 Thread bolek lolek
Hello, I have created PdfTemplate with some contour. Now i want to duplicate it 4 times and place different shapes on each of them. What I am trying now is: |PdfTemplate[] oRTA= new PdfTemplate[4]; for(int i=0; i<4; i++) { oRTA[i] = (PdfTemplate)oTemplate.GetDuplicate(false); } |