I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time
for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or
on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news,
I hope these links will serve you well.
Hello,
Does anyone know if HTML-HTMLDoc will include images pointed to like this, <SRC IMG="www.anydomain.com/images/image.gif"> ,in the HTML document that is being converted to a PDF?
Thanks,
spiroc
Posted on 2005-10-30 19:21:18-08
by mfranklin response to 501
Re: Converting HTML which points to images into PDF
If you use the protocoll http before your URL your images will get included:
<IMG SRC="http://www.anydomain.com/images/image.gif">
Please note the img-tag should look like that: <img src=".."> not <src img="..">.