반응형 다운로드1 [HTML/Script] Canvas 이미지 다운로드 html 파일에 canvas를 이용해서 다운로드를 하는 방법 script.jsconst canvas = document.getElementById('캔버스ID');const ctx = canvas.getContext('2d');// 다운로드 함수명function downloadImage() { const image = canvas.toDataURL("image/png"); // Create a temporary anchor element const link = document.createElement('a'); link.href = image; link.download = '파일명.png'; link.click();} html에서 그린 canvas를 그리고 .. 2024. 8. 30. 이전 1 다음 반응형