일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- java
- 자바
- Linux
- Windows
- 노드
- 자바스크립트
- python
- script
- 파이썬
- ubuntu
- Atlassian
- 스크립트
- 아틀라시안
- install
- 데이터베이스
- 하모니카
- hamonikr
- 설치
- 윈도우
- DB
- javascript
- JS
- postgres
- 우분투
- 3.0
- 설정
- 리눅스
- PostgreSQL
- DATABASE
- node
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