Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

wkhtmltopdfで画像をPDFに変換する

wkhtmltopdfはwebkitを使ってHTMLをPDFに変換するツールです。
wkhtmltopdf - Convert html to pdf using webkit (qtwebkit) - Google Project Hosting


このエントリーではwkhtmltopdfで画像をPDFに変換する方法を紹介します。

準備

画像とHTMLファイルを用意し、同じディレクトリに配置します。

image.jpg

foo.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
</head>
<body>
<img src="./image.jpg">
</body>
</html>

変換

wkhtmltopdfを実行します。


"C:\Program Files\wkhtmltopdf\wkhtmltopdf.exe" file:///D:/Sandbox/wkhtmltopdf/foo.html D:\Sandbox\wkhtmltopdf\output.pdf

変換結果