PDF to PPTX conversion produces incorrect border weight

Hello,

We’re experiencing issues when converting PDF files to PPTX. Table cell borders and text box borders are exported with incorrect widths. This issue occurs in Linux environment.

Input PDF:
Input.pdf (62.0 KB)
Output PPTX:
Output.pptx.zip (77.8 KB)

Here are found issues:

Below is sample code that was used to reproduce this (tested with Aspose.PDF version 25.12).

    try (Document srcDoc = new Document(pdf)) {
      ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
      PptxSaveOptions options = new PptxSaveOptions();
      options.setImageResolution(300);
      options.setSeparateImages(true);
      
      srcDoc.save(outputStream, options);
      return outputStream.toByteArray();
    }

Thank you.

Do we have any update?

@dfinsolutions
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): PDFJAVA-45918

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.

Hi, apologies for delay
I’ve checked your issue and passed it to development team to investigate this incorrect behavior