Not that I've found, but you can make imagemagick append all the pages to the same image and then crop the image.
Here are my command lines for htmldoc and imagemagick to produce an image 400x350 at 50% resolution.
htmldoc :
CODE
htmldoc --continuous --browserwidth 800 --landscape --size A4 --header ... --left 1in --embedfonts -f output.pdf url
( this gives output with no page breaks, a pdf browser width of 800, in landscape format on A4 pages, a blank header, 1inch left hand margin, embedding all original fonts used, to file output.pdf using url as input )
ImageMagick :
CODE
convert -scale 50% output.pdf -append image.jpg
This converts the pdf and scales the image to 50% while appending each page of the pdf to the same image
CODE
convert -crop 400x350-0-0 image.jpg image.jpg
This crops the image to 400x350 starting at 0 column and 0 row
CODE
convert -font spacetoa.ttf -fill red -pointsize 36 -gravity center -draw 'text 0,0 "Headrush Inc"' image.jpg image.jpg
This writes my logo on the image using an uploaded font (must be in the working directory), in red, 36 points type, centered on the image.
Note that all these commands are on one line each to be done sequentially.
I use them in a perl script so you can use variables instead of fixed names, urls etc.
It is still buggy, as some sites use frames, so you only get the main frame, or some sites have javascript browser checkers so all you see is a warning page. Also, some sites use so many graphics or java that the pdf file is enormous and you can't process it.
There are many many options to both these tools though, and it appears that you can use ImageMagick by itself and lose htmldoc, but you need html2ps installed first.
links:
http://www.imagemagick.org/
http://www-106.ibm.com/developerworks/libr...raf/?ca=dnt-428
http://www.easysw.com/htmldoc/htmldoc.html
have fun
alan
oh BTW, make sure you delete the pdf files after use, some of them are over 400 k !!!