Issues with PDF files

With the above ticket, Here are some more issues to be solved out.

Requesting a work around solution to solve the issues in the attached documents.

Doc 1 : Doc 1.zip (9.5 MB)

Doc 2 : Doc 2.zip (69.1 KB)

Doc 3 : Doc 3.zip (1.4 MB)

Doc 4 : Doc 4.zip (105.6 KB)

Doc 5 : Doc 5.zip (1.9 MB)

Doc 6 : Doc 6.zip (2.9 MB)

Regards,
Suruthy

@suruthyb,

Thanks for your inquiry. We have tested the scenario and have managed to reproduce the followings issues at our end. You will be notified via this forum thread once these issues are resolved. We apologize for your inconvenience.

WORDSNET-17272 : Parentheses in embedded graph do not render in output PDF

WORDSNET-17273 : Position of shapes are changed in output PDF

WORDSNET-17274 : Minus and Plus signs in embedded graph do not render in output PDF

WORDSNET-17275 : DOCX to PDF conversion issue paragraph rendering

@suruthyb,

We have tested the scenario using latest version of Aspose.Words for Java 18.7 and have not found any issue with output PDF. Please use Aspose.Words for Java 18.7.

We have logged this issue as WORDSJAVA-1855 in our issue tracking system.

@suruthyb,

Regarding WORDSNET-17273, please use following code example to get the desired output. Hope this helps you.

Document doc = new Document(MyDir + "10HC1L0X2JN_10_egi10HC1L0X2JN.docx");
NodeCollection shapes = doc.getChildNodes(NodeType.SHAPE, true);
for (Shape shape : (Iterable<Shape>) shapes)
{
    if(shape.toString(SaveFormat.TEXT).trim().equals("a") || shape.toString(SaveFormat.TEXT).trim().equals("b"))
    {
        shape.getTextBox().setInternalMarginRight(0.0);
    }
}
doc.save(MyDir + "18.8.pdf");

The issues you have found earlier (filed as WORDSJAVA-1855) have been fixed in this Aspose.Words for .NET 18.9 update and this Aspose.Words for Java 18.9 update.

The issues you have found earlier (filed as WORDSNET-17274) have been fixed in this Aspose.Words for .NET 19.7 update and this Aspose.Words for Java 19.7 update.

The issues you have found earlier (filed as WORDSNET-17272) have been fixed in this Aspose.Words for .NET 19.7 update and this Aspose.Words for Java 19.7 update.

Dear Team,

The minus and plus sign appears in the rendered pdf but the symbols are not properly placed and size varies.
Using word version19.7

Attached an input sample
Ticket_17274.zip (1.4 MB)
Thanks in advanceā€¦

@resh05

We have logged this problem in our issue tracking system as WORDSNET-18942. You will be notified via this forum thread once this issue is resolved.

We apologize for your inconvenience.

The issues you have found earlier (filed as WORDSNET-17274,WORDSNET-17272) have been fixed in this Aspose.Words for .NET 19.7 update and this Aspose.Words for Java 19.7 update.

The issues you have found earlier (filed as WORDSNET-18942) have been fixed in this Aspose.Words for .NET 19.10 update and this Aspose.Words for Java 19.10 update.