Images over text

Hi,
I downloaded a sample .odt document from the web to try to convert it to several document formats. Both for .pdf and .docx fileformats I experienced that some of the images missplaced and runs over the text. Is this a known issue?
Thanks,
Richard

Hello,
Thank you for your request. I managed to reproduce your problem on my side. Once the problem is resolved, we will notify you immediately.

Hi Richard,
Thanks for your request. As a temporary workaround, you can try using the following code:

Document doc = new Document(@"Test001\original.odt");
NodeCollection shapes = doc.GetChildNodes(NodeType.Shape, true);
foreach(Shape shape in shapes)
{
    if (shape.WrapType == WrapType.None)
        shape.WrapType = WrapType.Square;
}
doc.Save(@"Test001\out.docx");

Hope this helps.
Best regards,

The issues you have found earlier (filed as WORDSNET-4825) have been fixed in this .NET update and this Java update.

This message was posted using Notification2Forum from Downloads module by aspose.notifier.