3

How can I render HTML content to GIF image?

I found how to render it to PDF using reportlab, but no luck with GIF.

I want something like xhtml2pdf.com but final result should be not in pdf, but in image.

Dmitry Demidenko
  • 3,427
  • 1
  • 22
  • 22

1 Answers1

2

There's a similar SO question, Python library for rendering HTML and javascript , but I'm not sure the answers are satisfying.

I might try two-stage rendering: HTML -> pdf -> gif. In that case, reportlab gets you pdf, and PythonMagick (http://wiki.python.org/moin/ImageMagick) can convert the pdf to GIF.

Community
  • 1
  • 1
Andrew B.
  • 1,010
  • 6
  • 19