| arguments.add(new FileArgument(this, "srcfile", "The file you want to N-up", false, new PdfFilter()));
arguments.add(new FileArgument(this, "destfile", "The resulting PDF", true, new PdfFilter()));
OptionArgument oa = new OptionArgument(this, "pow2", "The number of pages you want to copy to 1 page");
oa.addOption("2", "1");
oa.addOption("4", "2");
oa.addOption("8", "3");
oa.addOption("16", "4");
oa.addOption("32", "5");
oa.addOption("64", "6");
arguments.add(oa);
}
|