Adding pages to an already existing eps file

Hello all,

I would like to know if it is possible to add some pages to an already existing eps or pdf file containing already several pages. For example, lets say that I created an eps (tmp.eps) file with several pages as follows,

TCanvas c;

c.Print(“tmp.eps[”);

for(int i=0;i<N;i++) {
c.Print(“tmp.eps”);
}

c.Print(“tmp.eps]”);

I would like to know if ti is possible to reopen the tmp.eps file and add additional pages.

Many thanks,

Alejandro

No