I am having difficulty changing the numcopies command on a page by page basis. In essence here is what I want to accomplish. A generic postscript level 2 file generated either with the adobe generic driver or ghostscript. Collated and 1 copy. I then want to break the file before the showpage command and vary the copies on a page level basis. Example Before change
%%EndDocument
LH (where showpage has been redefined by the driver)
(%%[Page 1]%%) =
%%PageTrailer
%%Page: 2 2
After Change
%%EndDocument
/NumCopies 3 def
LH (where showpage has been redefined by the driver)
(%%[Page 1]%%) =
%%PageTrailer
%%Page: 2 2
This does not appear to be functioning. Any ideas out there on how to accomplish this?
%%EndDocument
LH (where showpage has been redefined by the driver)
(%%[Page 1]%%) =
%%PageTrailer
%%Page: 2 2
After Change
%%EndDocument
/NumCopies 3 def
LH (where showpage has been redefined by the driver)
(%%[Page 1]%%) =
%%PageTrailer
%%Page: 2 2
This does not appear to be functioning. Any ideas out there on how to accomplish this?