5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Vueで作成した画面をPuppeteerでPDFダウンロードしてみた

Last updated at Posted at 2019-10-27

参考:How to Generate a PDF with JavaScript | PDFTron

この投稿は、↑のReactのサンプルをvueでやってみたという投稿になります。

間違いなどありましたら、教えていただけるとありがちあです。:bow:


@vue/cliを使って簡単にvueのアプリを立ち上げます。

npx -p @vue/cli vue create sample # 途中のプリセットの選択はそのままEnter
cd sample
yarn serve
Screen Shot 2019-10-27 at 19.33.45.png

PDFの範囲にスタイリングします

src/App.vue
<template>
  <div class='pdf'>
    
  </div>
</template>

<script>
</script>

<style>
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #d1d1d1
}

.pdf {
  width: 612px;
  height: 792px;
  background-color: white;
  margin: 0 auto;
}
</style>

Screen Shot 2019-10-27 at 19.53.07.png


画面に文字を表示します。

src/App.vue
<template>
  <div class='pdf'>
    <user v-for="({ lastName, firstName }, i) in users" :key="i">
      {{ lastName }} {{ firstName }}
    </user>
  </div>
</template>

<script>
import User from "./components/User"

export default {
  name: 'app',
  components: {
        User
  },
  data: () => ({
    users: [
      { lastName: "カクタ", firstName: "ヒロキ" },
      { lastName: "イナガキ", firstName: "ヤスヒコ" },
      { lastName: "オオツキ", firstName: "イワミ" },
      { lastName: "カタオカ", firstName: "イチオ" },
      { lastName: "ダイサキ", firstName: "サトル" },
    ],
  }),
}
</script>

<style>
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #d1d1d1
}

.pdf {
  width: 612px;
  height: 792px;
  background-color: white;
  margin: 0 auto;
}
</style>
src/components/User.vue
<template>
    <div><p><slot /></p></div>
</template>

<style scoped>
div {
    display: flex;
    justify-content: center;
}
</style>
Screen Shot 2019-10-27 at 20.13.46.png

vueで画面ができたので、puppeteerでPDFとしてダウンロードしてみます。

scripts/generate-pdf.js
const puppeteer = require('puppeteer');

(async () => {
  const browser = await puppeteer.launch();
  const page = await browser.newPage();
  await page.goto('http://localhost:8080/');
  await page.emulateMedia('screen');
  await page.pdf({
    path: './vue.pdf', // path (relative to CWD) to save the PDF to.
    printBackground: true,// print background colors
    width: '612px', // match the css width and height we set for our PDF
    height: '792px',
  });
  await browser.close();
})()
yarn add -D puppeteer
node scripts/generate-pdf.js 
# ※ ↑ yarn serve でアプリが立ち上がっている状態で、 generate-pdf.js を実行
Screen Shot 2019-10-27 at 21.15.48.png

PDFのダウンロードができました。

見ていただいてありがとうございました。m(_ _)m

5
3
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
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?