LoginSignup
2
1

More than 5 years have passed since last update.

chromeでprint-to-pdfのフッターが消せなくて困った

Last updated at Posted at 2018-10-30

フッターを消すオプションが無いっぽい

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とかheaderTemplatefooterTemplateのオプションついてくれないかな...
https://cs.chromium.org/chromium/src/headless/app/headless_shell_switches.cc

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1