Hello
I'm trying to convert a piece of HTML to a JPG file that contains two images but no matter what I try the best I can get is one of the images showing. If I convert it to a PDF I get one image then a slither of the second image further down. If I save and view the HTML file its exactly as I want.
The HTML is as follows:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<img src="Image1" style="position:fixed; left:0px; top:0px;"/>
<img src="Image2" style="position:fixed; left:175px; top:101px; width:440px; height:306px;"/>
</body>
"Image1" and "Image2" I'm getting from OneDrive then converting to Base64 using the DataURI then I'm composing the HTML
Any ideas?