canvas width, heigth 셋팅시 주의점
2021. 2. 3. 22:28ㆍJavascript
context 정의 전에 width, heigth를 변경해야 적용됨
[좋은 예]
canvas = document.getElementById('box')
canvas.width = img.width
canvas.height = img.height
context = canvas.getContext('2d')
[나쁜 예]
canvas = document.getElementById('box')
context = canvas.getContext('2d')
canvas.width = img.width
canvas.height = img.height
'Javascript' 카테고리의 다른 글
태그에 명시적으로 셋팅되지 않은 height 정보 가져오기 (0) | 2021.02.03 |
---|---|
div style 셋팅시 주의 점 (0) | 2021.02.03 |
canvas에서 마우스로 도형 조작하기 참조 (0) | 2021.01.25 |
document 요소 삽입과 교체 (0) | 2021.01.24 |
canvas 이미지 복사시 고려할 사항 (0) | 2021.01.24 |