Native ancient solution in ColdFusion, which was used to work with HTML 3.x ...
<cfhttp url="#targetUrl#" resolveurl="yes">
<cfdocument format="pdf" name="pdfVar">
#cfhttp.filecontent#
</cfdocument>
<cfpdf action="thumbnail" source="#pdfVar#" pages="1" destination="image">
<cfimage action="writeToBrowser" source="#image#">
Super slow, even with a cache, many CSS styles are missing or broken.
Any good server solution for capturing a displayed webpage in thumbnail? How is the service provided by http://www.shrinktheweb.com/ ?
Any solution for ColdFusion utility, Java or command line?
source
share