Hi,
I am currently applying a drop shadow to an image (JPG or PNG) along the right and bottom sides. When I run the HTML through the Prince conversion algorithm, the image in the resulting PDF is pixelated/blurred whereas the same image in the PDF without a drop shadow is as sharp as the source image.
I am using Prince 11.3.2. We recently bought a server license specifically for the drop shadow support so it is a little disconcerting to be encountering this problem.
Has anyone on the forum experienced this or can someone direct me in terms of what I may be doing incorrectly? Below is a simple piece of HTML that exhibits the problem. Zooming in will clearly show the issue.
Thanks for any and all help!
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<p>
<b>This image is sharp.</b><br/>
<img src="C:\Temp\Sample.png" style="max-width: 93pt; max-height: 30pt;" />
</p>
<p>
<b>This image is blurry and pixelated when zoomed in.</b><br />
<img src="C:\Temp\Sample.png" style="filter: drop-shadow(2pt 4pt 0pt #33A457); max-width: 93pt; max-height: 30pt;" />
</p>
</body>
</html>
I am currently applying a drop shadow to an image (JPG or PNG) along the right and bottom sides. When I run the HTML through the Prince conversion algorithm, the image in the resulting PDF is pixelated/blurred whereas the same image in the PDF without a drop shadow is as sharp as the source image.
I am using Prince 11.3.2. We recently bought a server license specifically for the drop shadow support so it is a little disconcerting to be encountering this problem.
Has anyone on the forum experienced this or can someone direct me in terms of what I may be doing incorrectly? Below is a simple piece of HTML that exhibits the problem. Zooming in will clearly show the issue.
Thanks for any and all help!
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<p>
<b>This image is sharp.</b><br/>
<img src="C:\Temp\Sample.png" style="max-width: 93pt; max-height: 30pt;" />
</p>
<p>
<b>This image is blurry and pixelated when zoomed in.</b><br />
<img src="C:\Temp\Sample.png" style="filter: drop-shadow(2pt 4pt 0pt #33A457); max-width: 93pt; max-height: 30pt;" />
</p>
</body>
</html>