Images width and hight not coming correct when Width and Hight has px

Images in my HTML are auto generated with hight and width attributes are set like the following

<img width="100px" height="150px" alt="" src="/DFSAWeb/RiskMatrix/UILayer/Editor/Images/Picture1.jpg" />'

when converting this html, the images came with the original size.

When we changed the image tag manually to

<img width="100" height="150" alt="" src="/DFSAWeb/RiskMatrix/UILayer/Editor/Images/Picture1.jpg" />'

without the PX in the attribute, the converted document came correctly with the correct size

Is there any way to convert correctly with the correctly hight and width when they contain the “px” since this the html is auto generated.

Hi

Thanks for your inquiry. In height and width attributes of IMG tag, you cannot specify measurement units. Height and width can be specified in pixels (without any units) and in percents (like this height=’100%’). Please see HTML specification for more information:
http://www.w3schools.com/tags/tag_IMG.asp
Best regards.