Hello Team,
I am facing issue with spire.doc when converting the HTML to document of type docx 2013 or any.
this HTML is generated from "ck editor 5" which contains image.
Original dimension of sample image : 512X 512 pixcels
Sample Not working: Once i use image Resizing the generated Document is having wrong dimensions.
<p>
<img class="image_resized" style="width:25 %;" src=" sample image">
</p>
Note: we expect dimension of 128 X 128 pixcels but its coming different.
Sample 2 (working one) : if No resizing is used, then the generated Document is having the original expected dimensions .
<p>
<img src="sample image">
</p>