Dear EO Team,
We are testing use EO.PDF convert HTML to JEPG, but we just found out the text in JPEG is blur.
I guess it may be some kind of image resolution problem , but I can't figure out how to set image resolution?
HTML show in browser
Blur Font in JPEG
HTML :
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<div>
Hello World.<br />
<span style="font-size:2em">Hello World.</span><br />
<span style="font-size:4em">Hello World.</span>
</div>
</body>
</html>
Code:
HtmlToPdfResult result = HtmlToPdf.ConvertUrl("http://localhost//fusion.aspx", "c:\\fusion.pdf");
System.Drawing.Image pageImage = result.PageImages[0];
pageImage.Save("c:\\fusion.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);
Can you make the text in JPEG as clear as in the browser?
Thank you