New Post: Error when there is image in html
Hi, I am using HtmlConverter in my code and it is working fine when there is no image tag in the html that i am trying to convert to WordML, but when i have an image then the word doc shows the...
View ArticleNew Post: Error when there is image in html
I'm curious, why don't you use : converter.BaseImageUrl = BaseURL; converter.ImageProcessing = ImageProcessing.AutomaticDownloaded; It will handle all your code for you. Your code looks correct, are...
View ArticleNew Post: Error when there is image in html
I tried using BaseImageUrl but it is not saving the images in word.Web services are not failing, tested that.Images are also getting saved in word. But generated word file gives those popups and when...
View ArticleNew Post: Problems with colspan and rowspan together
I'm trying to generate a table that has colspan AND rowspan in the same cell, but the table is being generated problems. This problem happens only when a cell has rowspan AND colspan. Anyone else have...
View ArticleNew Post: Problems with colspan and rowspan together
Had a similar problem with a parent row containing both a horizontally merged cell and a vertically merged cell. The following code need to be reviewed and better rewritten, but it works for now....
View ArticleNew Post: Error when using image in the html
Hi friend I'm in a serious issue. I tried your dll and its working for html. But when I have any image tag in it with its src as any real urls...
View ArticleNew Post: ul and ol tag
I too am having problems with the ul/ol tags. When I pass in the following:"<ol><li>test1</li><li>test2</li></ol><p/><ul><li>test...
View ArticleNew Post: How to set the Page top margin to less than 1"
Is there a way to give the margin in millimeters (or in inches, for americans)? I find it quite unusable to use those UInt32Value as units... For now what came in my mind is to build my own helper...
View ArticleNew Post: How to set the Page top margin to less than 1"
can't you use the Unit class ? There is some conversion utilities but yes the class is private so you would need to tweak the library yourself.
View ArticleNew Post: How to set the Page top margin to less than 1"
I couldn't find a converter so I created one (actually 2 because top and bottom use int and left and right UInt32): /// <summary> /// Converts millimeters to int /// </summary> ///...
View ArticleNew Post: How to set the Page top margin to less than 1"
I'm talking about this class: Unit.cs left = new Unit(UnitMetric.Millimeter, 475).ValueInDxa; Dxa = twentieths of a point and is the unit expected according to MSDN.
View ArticleNew Post: How to set the Page top margin to less than 1"
Cool, didn't know that class ;) ...and now I see that PageMargin is not in your library but in the OpenXML library... so you can't change it. Thank you for sharing the info and again for this awesome...
View ArticleNew Post: Error when using image in the html
Hi, I just avec tested and it works well with no errors. Can you post more information about the Html you are trying to parse ? Are you behind a proxy ? I know there is a bug on that Image downloading...
View ArticleNew Post: ul and ol tag
I have the same problem with ul/ol tags. Vote for this bug. Tested latest version built from source code. The bug is still present.
View ArticleNew Post: ul and ol tag
I'm sorry, that was an error in my post-processing code. Everything is ok now.
View ArticleNew Post: ul and ol tag
I downloaded the source code and used that. It works fine in the latest source code, just not in the latest stable build.
View ArticleNew Post: Suggestion: add "image/x-png" in addition to "image/png" to...
I had to add support for "x-png" in addition to "png" as a MIME type in ImageDownloader.cs. I encourage you to add this to the code: { "image/jpeg", ImagePartType.Jpeg }, { "image/png",...
View ArticleNew Post: Suggestion: add "image/x-png" in addition to "image/png" to...
Turns out there's another worthy of addition: pjpeg: { "image/pjpeg", ImagePartType.Jpeg }, Thanks!
View Article