I tried to use your aspose.pdf. to merge two or more signed PDF files from oracle database at runtime, but it seems after using your api to remove signature, I need to save the removed signatured PDFs as new PDFs, then merge them.As the merge happens at runtime, is it possible you can provide a way to skip save step and merge removed signtured PDFs? (following code is currently use)
PdfFileSignature pdfSign=new PdfFileSignature();
pdfSign.bindPdf(f1);
ArrayList names1=pdfSign.getSignNames();
pdfSign.removeSignature("signName");
pdfSign.save("*.pdf") or outputstream // new pdf
then do merge
Or can I just using your api to convert pdfs to images and merge them as PDF?