'node-html-pdf not show image in PDF
Solution 1:[1]
Can you something like this, since its not reading your image, its taking it as a string.
<img src={{IMG_URL}} style="width:100%"/>
Or you can put base64 of image like:
<img src="data:image/jpeg;base64, {{BASE64_DATA_OF_IMG}}" style="width:100%"/>
This will read your image in pdf.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Ashishssoni |