1

我想将 HTML 表格转换为 PNG 或 GIF 图像。我在 Linux 操作系统下使用 Perl。

我使用 TinyMCE 编辑器。用户可以编辑 HTML 表格(使用 CSS 类和其他 CSS 格式化程序),我想将此表格保存为图像。

最简单的方法是什么?

4

2 回答 2

3

您可以使用一些命令行工具来完成此操作。

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

在我的 Ubuntu 系统上,我安装了这些:

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

转换不太可能与您在网络浏览器中看到的相同。

于 2012-12-16T19:14:15.440 回答
1

你可以使用 ImageMagick/PerlMagick 和 Webkit 吗?

https://metacpan.org/module/PDF::WebKit

http://code.google.com/p/wkhtmltopdf/

https://metacpan.org/module/Image::Magick

http://www.imagemagick.org/script/perl-magick.php

use PDF::WebKit;
use Image::Magick;

# PDF::WebKit->new takes the HTML and any options for wkhtmltopdf
# run `wkhtmltopdf --extended-help` for a full list of options
my $kit = PDF::WebKit->new( \$html, page_size => 'Letter' );
push @{ $kit->stylesheets }, "/path/to/css/file";

# save the PDF to a file
my $file = $kit->to_file('/path/to/save/pdf');

#Perl interface
my $p = new Image::Magick;
$p->Read('/path/to/save/pdf');
$p->Write("file.png");

#Or command line
my @args = ( 'convert', '/path/to/save/pdf', "file.png" );
system(@args) == 0
  or die "system @args failed: $?";
于 2012-12-16T20:51:07.393 回答