Hello,
I found out this old topic which seems to be quite similar to mine :
Hello
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
Thanks for your request. The problem occurs because Aspose.Words still does not support floating images positioning during rendering.
As a workaround, you can try refactoring your document to avoid using floating images. Of course, it would be better to change your document in Ms Word. In this case, you will be able to control how document layout is changed after changing text wrapping of shapes.
You can try doing this programmatically, but in this case layout of your documents can be changed. Please see the following code:
Document doc = new Document("in.doc");
// Get all Shapes
NodeCollection shapesColl = doc.GetChildNodes(NodeType.Shape, true, false);
foreach (Shape shape in shapesColl)
{
shape.WrapType = WrapType.Inline;
}
Also, your request has been linked to the appropriate issue. You will be notified as soon as it is supported.
Best regards,
Hello Andrey,
- We tried the code you gave as a workaroud, it works well. This limitation is not really disturbing, but before buying Apose we need to need all these kind of limitations.
Where could we find the APOSE limitation list (for Office documents) ?
- We are very interested in OCR Recognition in APOSE.PDF library (.Net)
We instaled the trial version to make sure that it works well on our issue.But we have this message :
"Warning:This is the evaluation version of Aspose.Pdf.Kit. The extraction will just be executed on parts of the pages. Please purchase your license to extract text correctly.Extracted with Aspose.Pdf.Kit Copyright 2002-2009 Aspose Pty Ltd."
Only few (5-10) characters are recognised, it’s not enough to try completely your library. Is that possible to get another trial version but with longer recognition ?
It would be great for us.
Laurent Vaillant<span style=“font-size:9.0pt;font-family:“Century Gothic”;color:black;mso-no-proof:
yes”>
PACIFICA
Tél. 00 33 (0) 1
53 74 33 66<o:p></o:p>
Hello Laurent,
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
Thanks for your request. Aspose.Words uses our own Rendering Engine to print a document, the same Rendering Engine we use to convert a document to PDF and image. Please see the following link to see the table which provides detail about how Aspose.Words saves document in the PDF format:
You should ask questions regarding Aspose.Pdf.Kit to the appropriate forum:
http://www.aspose.com/community/forums/aspose.pdf.kit-product-family/215/showforum.aspx
Best regards,
The issues you have found earlier (filed as WORDSNET-5557) have been fixed in this .NET update and this Java update.
This message was posted using Notification2Forum from Downloads module by aspose.notifier.
(5)