フッターを消すオプションが無いっぽい
chrome --disable-crash-reporter --disable-gpu --headless --print-to-pdf=xxx.pdf https://xxx.xxx.xxx
HTMLの適当な位置に<footer>
タグを入れてcssで白帯にして回避。
/* デフォルトのフッターを塗り潰す用 */
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 4em;
content: '';
background-color: white;
z-index: -1;
}
displayHeaderFooter
とかheaderTemplate
、footerTemplate
のオプションついてくれないかな...
https://cs.chromium.org/chromium/src/headless/app/headless_shell_switches.cc