Hi Christophe,
Hi,
This is the code I used to process the file added with this post.
I can’t obtain the file result.
public static void main( String[] args )
{
String path=“src/test/java/resources/”;
String inputFile=path+“10 pages.pdf”;
String outFile = path+“MyoutFile.pdf”;
PdfFileEditor pdf = new PdfFileEditor();
pdf.makeNUp(inputFile, outFile,2,2);
}
Best regards.
Hi Christophe,
String path = “c:/pdftest/”;<o:p></o:p>
String inputFile = path + "10+pages.pdf";
String outFile = path + "MyoutFile.pdf";
com.aspose.pdf.facades.PdfFileEditor pdf = new com.aspose.pdf.facades.PdfFileEditor();
pdf.makeNUp(inputFile, outFile, 2, 2);
Hi Nayyer,
I’ve tried to generate the pdf file according to your advices, based on the pdf library 4.4.0, with com.aspose.pdf.facades.PdfFileEditor. But I don’t understand why the result file is not created.
I’ve used the com.aspose.pdf.facades.PdfFileEditor, of the 4.1.0 library with the same result.
The file is created only when I use PdfFileEditor of the pdf-kit library.
I’ve joined to this mail, the project I’ve created to test.
Best regards.
Christophe
Hi Christophe,