Table borders with bigger border weight are rendered incorrectly in the exported pptx

Hi, we are experiencing some issues while trying to convert pdf to pptx file using aspose.pdf library. Table borders with bigger border weight are rendered incorrectly in the exported pptx. Please find the pdf input attached. Also, below is the code snippet to replicate this behaviour.

bug_254459.pdf (13.4 KB)

In case some options need to be passed to avoid such outcome, please advise.

pdf
image.png (4.2 KB)

pptx
image.png (37.1 KB)

@Test
  void exportPPTX_tableBordersAreRenderedIncorrectly() throws Exception {
    var pdfBytes = new ClassPathResource("bug_254459.pdf").getInputStream().readAllBytes();

    try (Document srcDoc = new Document(pdfBytes)) {

      ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
      srcDoc.save(outputStream, com.aspose.pdf.SaveFormat.Pptx);

      var out = outputStream.toByteArray();

      Files.write(Path.of("bug_254459.pptx"), out, StandardOpenOption.CREATE);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }

@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-44053

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.