Hi,
I have a need to wrap an image with a link. This generally works just fine with the exception of when the image is rotated. The following HTML code functions well when viewed as HTML. That is, hovering anywhere over the rotated image activates the link. However, when I run it through the Prince converter, the link is only active when hovering over the bounding box of the image prior to rotation. In this case, the link is not active in the PDF when hovering over the top or bottom part of the rotated image, but the link is active when hovering outside the rotated image to either the left or right of the image. Am I missing something or is there a way to prevent this behavior?
Thanks!
Scott Stanelle
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<p>
<a href="http://www.theargonaut.com">
<img src="sample.jpg" style="width: 300pt; transform: rotate(90deg);" />
</a>
</p>
</body>
</html>
I have a need to wrap an image with a link. This generally works just fine with the exception of when the image is rotated. The following HTML code functions well when viewed as HTML. That is, hovering anywhere over the rotated image activates the link. However, when I run it through the Prince converter, the link is only active when hovering over the bounding box of the image prior to rotation. In this case, the link is not active in the PDF when hovering over the top or bottom part of the rotated image, but the link is active when hovering outside the rotated image to either the left or right of the image. Am I missing something or is there a way to prevent this behavior?
Thanks!
Scott Stanelle
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<p>
<a href="http://www.theargonaut.com">
<img src="sample.jpg" style="width: 300pt; transform: rotate(90deg);" />
</a>
</p>
</body>
</html>