Expand my Community achievements bar.

July 31st AEM Gems Webinar: Elevate your AEM development to master the integration of private GitHub repositories within AEM Cloud Manager.

how to NOT shrink on nUp pageHandling

Avatar

Former Community Member

Hi,

Could someone please help me how to not shrink a page while printing Multiple Pages Per Sheet.

this.setPageRotations(0,0,180);
var pp = this.getPrintParams();
pp.interactive = pp.constants.interactionLevel.silent;
pp.firstPage = 0;
pp.lastPage = 1;
pp.pageHandling = pp.constants.handling.nUp;
pp.nUpPageOrders = pp.constants.nUpPageOrders.Vertical;
pp.nUpNumPagesV = 2;
this.print(pp);
this.setPageRotations(0,0,0);

I am printing 2 A5 pdf pages on 1 A4 paper and the result is the pages get shrunk. How to stop this?

Thanks in advance.

Nag

0 Replies