Hello, I'd like to make an image take up all the space on the first page of my PDF.
Currently, I'm using this HTML tag for my image:
I've included a @page rule in my CSS styles for the HTML page:
The image stretches fine across the entire first page of the output PDF, but part of it is missing from the page, like the image is not correctly centered.
Is there anyway I can correct this?
Thanks.
Currently, I'm using this HTML tag for my image:
<p style=text-align: center;><img src="test.jpg" height="100%" width="100%"/></p>
I've included a @page rule in my CSS styles for the HTML page:
@page:first { margin: 0pt; }
The image stretches fine across the entire first page of the output PDF, but part of it is missing from the page, like the image is not correctly centered.
Is there anyway I can correct this?
Thanks.