Hello
I have a problem(part of the text disappears) when try to convert
att_gora_listan pdfua.pdf (1.4 MB)
file to any PDF format (used pdfa-1b for example) I used ASPOSE v24.3.0. But if try used ASPOSE v24.2.0. — file converted correctly.
I used code like this:
using (var document = new Document(inputFilePath))
{
document.Convert(pdfFormatConversionOptions);
document.Save(outputFilePath);
}
pdfFormatConversionOptions value:
Screenshot 2025-01-21 181805.png (40.6 KB)
Result file :
05196449C02D4BD594D20D0E2C820396_2025-01-21-18-13-49_39.pdf.pdf (1.5 MB)
These files have the same problem :
att_gora_listan pdfua.pdf (1.4 MB)
att_gora_listan pdfa1b.pdf (1.5 MB)
@uaprogrammer
It seems you are experiencing an issue where part of the text disappears when converting a PDF file using Aspose version 24.3.0, while the conversion works correctly with version 24.2.0. This could be due to changes or bugs introduced in the newer version.
To troubleshoot this issue, you can try the following steps:
-
Check for Updates: Ensure that you are using the latest version of Aspose.PDF, as the issue may have been addressed in a subsequent release after 24.3.0.
-
Validate the PDF: Before conversion, validate the PDF document to check for any issues that might affect the conversion process. You can use the validate
method to generate a log file that can help identify potential problems.
-
Use Different Conversion Options: Experiment with different PDF format conversion options. For instance, if you are currently using PDF/A-1b, try converting to other formats like PDF/A-3b or PDF/A-2a to see if the issue persists.
-
Review Conversion Logs: If you have conversion logs generated during the process, review them for any warnings or errors that might indicate why the text is disappearing.
-
Revert to Previous Version: If the issue is critical and you need an immediate solution, consider reverting to version 24.2.0 until the problem is resolved in a future release.
Here is a sample code snippet for validating and converting a PDF document:
using (var document = new Document(inputFilePath))
{
// Validate the document
document.Validate("validation_log.xml", PdfFormat.PDF_A_1B);
// Convert the document
document.Convert(pdfFormatConversionOptions);
// Save the converted document
document.Save(outputFilePath);
}
If the problem continues, consider reaching out to Aspose support with the specific details of your issue, including the PDF file and the conversion options you are using.
If you have any further questions or need additional assistance, feel free to ask!
Could you please investigate my issue?
@uaprogrammer
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.
Issue ID(s): PDFNET-59118
You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.