I try to convert a webpage into pdf.
wkhtmltopdf http://orion.lcg.ufrj.br/Dr.Dobbs/books/book9/mf1201.htm my.pdf
The problem is that the created pdf has very small images, where the image files are quoted in the html file as, for example,
<P ALIGN="Center">
<a href="images/fig1_5.gif">
<img src="images/fig1_5t.gif">
</A>
</P>
<P ALIGN="Center">
<B>Fig. 1.5.</B> A coloring of the graph of Fig. 1.2.
</P>
Can I instruct wkhtmltopdf to use the high resolution images/fig1_5.gif rather than the low resolution images/fig1_5t.gif in the pdf file? Thanks.