Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
751 views
in Technique[技术] by (71.8m points)

css - How can I convert a HTML table to an image?

I want to to convert a HTML table to a PNG or GIF image. I'm using Perl under Linux operating system.

I use the TinyMCE editor. The user can edit a HTML table (using CSS classes and other CSS formatters), and I want to save this table as an image.

What is the simplest way to do this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can accomplish this with a few command line tools.

$: html2ps table.html > table.ps
$: ps2pdf table.ps 
$: convert table.pdf table.png

On my Ubuntu system I installed these with:

apt-get install html2ps
apt-get install ps2pdf
apt-get install imagemagick

The conversion isn't likely to be identical to what you see in your web browser.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...