views:

180

answers:

4

As my question on the same topic (but specific to PHP) doesn't seem to yield much help, I would like to know if there are free Windows binaries (preferably those which don't require .NET runtime environment) which could take as input (on the command line) some tabular data and output an image?

Edit: By tabular data I mean an HTML table.

A: 

Try

http://www.converthtmltoimage.com/ http://www.guangmingsoft.net/htmlsnapshot/help.htm

Ankur
The first one doesn't seem to work even with its own test cases.Second one has too big a watermark and too big a price tag.
dta
+1  A: 

I wrote my own solution with Delphi using TWebBrowser, a wrapper to MSHTML.

But you can try this for free

http://labs.trolltech.com/blogs/2008/11/03/thumbnail-preview-of-web-page/ or http://cutycapt.sourceforge.net/

Cesar Romero
A: 

This isn't for Win32, but in case anyone finds this while looking for Mac resources, LittleSnapper does this very well.

Tim Sullivan
A: 

It looks like ImageMagick can do it, if you install html2ps (a perl script).

If it is fairly basic table, you could likely just use ImageMagick to render the text with a little coding.

Philip T.