在我的 Ubuntu 机器上,我安装了 htlm2ps 以便将简单的 html 文件转换为 GIF。我的 html 文件如下所示:
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="utf-8">
</head>
<body style="width: 120px; height: 90px" >
<div>
<div>Gas Prices</div>
<div>Todays local Prices</div>
<div>Low Price 1.29</div>
<div>High Price 1.44</div>
</div>
</body>
</html>
我像这样运行转换:
convert -size 120x90 gas.html gas.gif
但是,生成的图像总是大小为 612x712。转换为 PNG 或 JPG 时也是如此。
任何想法我做错了什么?