일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- DB
- 아틀라시안
- python
- install
- ubuntu
- 파이썬
- postgres
- hamonikr
- Linux
- 우분투
- script
- java
- 자바
- 데이터베이스
- 설치
- 스크립트
- 설정
- 자바스크립트
- 하모니카
- Atlassian
- Windows
- javascript
- JS
- 윈도우
- DATABASE
- 리눅스
- 노드
- PostgreSQL
- node
- 3.0
Archives
- Today
- Total
LukeHan 의 잡다한 기술 블로그
html2canvas 를 활용한 화면 캡쳐 및 저장하기 본문
반응형
npm i html2canvas
위와 같이 입력하여 html2canvas 패키지 설치를 한다.
const html2canvas = require('html2canvas');
function saveScreenshot(canvas){
const link = document.createElement("a");
link.download = 'lukehan.png';
canvas.toBlob(function(blob){
link.href = URL.createObjectURL(blob);
link.click();
});
}
html2canvas(document.body, {
allowTaint: true,
useCORS: true,
scale: 1
}).then(saveScreenshot);
위와 같이 코드를 작성하면 전체 화면을 캡쳐하여 저장할 수 있다.
전체 화면을 캡쳐하기 위해 html2canvas 에 document.body 를 캡쳐 대상으로 지정하였다.
scale 설정을 1로 하여 원본 크기로 지정하였다.
참고
- https://stackoverflow.com/questions/58839453/download-image-using-html2canvas
- https://velog.io/@sumi-0011/html2canvas
반응형
Comments