Html Img Source only works with http location and not local folder

Hi @tpernes

If you want to use local image, you can convert the image into base64 and you can use it.

Example:

< img src=“data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAUA
AAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO
9TXL0Y4OHwAAAABJRU5ErkJggg==” alt=“Red dot” />

7 Likes