linux の chrome で html を pdf に変換する方法のメモ
■chrome のインストール
/etc/yum.repos.d/google.chrome.repo を作成します。
安定版をインストールします。
sudo yum install google-chrome-stable
■chrome で html を pdf に変換
--print-to-pdf オプションを指定すると、html を pdf に変換することができます。
以下は、https://www.goo.ne.jp/ を pdf にする例です。
■chrome のインストール
/etc/yum.repos.d/google.chrome.repo を作成します。
[google-chrome] name=google-chrome baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch enabled=1 gpgcheck=1 gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
安定版をインストールします。
sudo yum install google-chrome-stable
■chrome で html を pdf に変換
--print-to-pdf オプションを指定すると、html を pdf に変換することができます。
google-chrome \ --disable-gpu \ --headless \ --print-to-pdf={pdf_file} \ {url}
以下は、https://www.goo.ne.jp/ を pdf にする例です。
google-chrome \ --disable-gpu \ --headless \ --print-to-pdf=www_goo_ne_jp.pdf \ 'https://www.goo.ne.jp'