New Post: Adding image as inline in word document
Dear All I need an urgent information. I am trying to add the image in document using this tool. I'm using the same example on documentation by using .NET framwork 3.5. I am unable to view the image;...
View ArticleNew Post: Adding image as inline in word document
Hello, I notice 2 things on your code: 1) the first image contains a break-line in your inline data. Perhaps it's due to Codeplex forum but as-is, it does not work. 2) image/jpg is not a standardized...
View ArticleNew Post: Adding image as inline in word document
Olivier, On another matter, have you been able to try google viewer with any document produced by the library? As I have noted, even the simplest document fails to be displayed until saved within...
View ArticleNew Post: Adding image as inline in word document
I have check with image/jp_e_g. Its looking still the same. Do you have any other solution? BTW thanks both of you for replying fast :-)
View ArticleNew Post: Adding image as inline in word document
Hi Chris, Yes I speak French ; I'm Belgian :-) It's hard to explain why Google Viewer failed to load the docx. Even when modifying an existing one (not creating from scratch) fails. Do you dare asking...
View ArticleNew Post: Adding image as inline in word document
sorry but it's "image/jpeg" codeplex "BOLD" button replace the e with e but it's seem to not working... edit: and now it works.. Damn!
View ArticleNew Post: Adding image as inline in word document
Excellent. Je suis canadien. Ce qui est intéressant, c'est si le document est sauvegarde par Word après, tout fonctionne à merveille. Auriez-vous essaye le 'validateur' d'openXml sur les fichiers crées...
View ArticleNew Post: Adding image as inline in word document
Oui j'ai ajouté l'étape de validation dans mon process de testing. Tout n'est pas 100% parfait sur tout mais j'y travaille... J'ai pris la validation Office 2010. Peut-être Google utilise la version...
View ArticleNew Post: Thread Safe
I have one question. This library HtmlToOpenXml is thread safe? i mean, if 3,4,5 users try to do press same button that convert html body to xml, it will handle this?
View ArticleNew Post: Thread Safe
Yes it is but each thread should use its own instance of HtmlConverter. By the way, if you write the generated docx on file system, it will failed due to concurrency but if you work on document...
View ArticleNew Post: Change Orientation to landscape
Hello, First off, thanks for this wonderful library. It has helped me a bunch. I was curious if anything like the above has been implemented yet. I have a requirement that certain pages with large...
View ArticleNew Post: Style not used to convert
Hi, I am new to this library and OpenXML. I am using it to convert html document which defines the css styles within the html. During convertion to Word the styles are not applied. Is this possible...
View ArticleNew Post: Style not used to convert
Hi, CSS is partially supported. Only inline css (ie for example: <span style="font-family: Verdana; font-size: 12px"/>), not <style></style> You can have a more detailled information...
View ArticleNew Post: Change Orientation to landscape
Hello, Sorry for late reply. Yes something has been implemented. You can declare your body as follow: <bodystyle="page-orientation: landscape"></body>to turn your page in landscape....
View ArticleNew Post: converter parse img returns nothing
this is my code: Document document = new Document() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "w14 wp14" } }; DocumentNamespace(document); MainPart.Document = document; Body...
View ArticleNew Post: converter parse img returns nothing
Can you show me what's in "paragraphObject" ? In fact, what is the HTML you are parsing?
View ArticleNew Post: converter parse img returns nothing
simply <img alt="" src="http://localhost/Piktogramy/C.png" />
View ArticleNew Post: converter parse img returns nothing
Don't you need a proxy or credentials? You can still download the source code and debug from there.
View ArticleNew Post: converter parse img returns nothing
Ok tried a different solution, becouse it turns out when i use a external web url it works fine. I decided to try with this solution: private void converter_ProvisionImage(object sender,...
View ArticleNew Post: Rowspan is not working as expected
I have a table in html page which has many rowspan , colspan in it. The table structure is give below:<table align="center" border="1"> <tbody> <tr> <td align="center"...
View Article