We are having an issue while spltting the document using PdfFileEditor.Extract method. This methid is giving lot of blank pages in output pdf document. Our input document is pdf, we are trying to extract couple of pages from it to separate pdf which is getting a lot of blank pages.
@Febinbabu Since your question is related to Aspose.PDF, I have moved it into the appropriate forum. My colleagues from Aspose.PDF team will help you shortly.
Instead of using Facades Classes, please try using DOM approach to extract the Pages like below and let us know if you still face any issues:
Document doc = new Document("FiletobeSplit.pdf");
Document resultDoc = new Document();
resultDoc.Pages.Add(doc.Pages[1]);
resultDoc.Pages.Add(doc.Pages[5]);
resultDoc.Save("extractedPages.pdf");
Hi Team,
I am writing to report a licensing concern with Aspose.Pdf version 7.3 in our current application environment. Merge document functionality was working fine with all the previous version of Aspose.Total.lic. However, after upgrading Aspose.total.lic to the latest version(2025), we are experiencing an unexpected issue. When creating merged pdf documents, it displays a message "Evaluation Only. Created with Aspose.Pdf Copyright 2002-2012 Aspose Pty Ltd ".
Attaching the screenshot here
AsposeIssue.png (13.8 KB)
Requesting you to provide a solution as soon as possible
Please make sure that you are using the license with the latest available version of the API and if issue still persists, please let us know.
If use the latest license with latest Aspose.pdf version (24.11) It is working as expected. The issue is only with the new license (2025) with Apose.pdf version 7.3.
But in our application Aspose.pdf version 7.3 is widely being used. To upgrade it to latest version, code changes are required. Our current Aspose.Total.lic going to expire with in next few days. We don’t have enough time to do the code change before the license expiry to make the aspose pdf version to the latest.
Is there any solution for this issue rather than upgrading the aspose pdf version to latest, considering the time.
If you want to keep using older version, you do not even need to purchase or re-new your existing license. Your old license for 7.3 version will remain valid for as long as you want to use 7.3 version of the API.
The issue you are facing is because you are trying to use the latest license version with an older version of the API that does not have support for it.
The license we issue is usable for as long as you want for the API Versions released before the expiry date of the license. Therefore, please keep using the older license and if you want to upgrade to the latest version (which is recommended always), you can update your codebase gradually and once you are done, you can finally renew your license and start using it.