We are using abcpdf(license version) for converting html to pdf.
The function we are using of it is - AddImageHtml
We are passing the html in string form to this function as
"<html>
<body>
<img id="imgTest" src="../testImage.png"/>
</body>
</html>"
This image is present on the path, but image is not loading. We tried absolute path for this too as
"<html>
<body>
<img id="imgTest" src="http://www.example.com/testImage.png"/>
</body>
</html>"
Can you please guide, if we are doing wrong anywhere or any ref link would be a great help. Thank you so much in advance!