미니옵빠의 code stubs

html2canvas 본문

Language/Javascript

html2canvas

미니옵빠 2015. 4. 16. 14:35

http://html2canvas.hertzen.com/documentation.html


이슈

- 1. Cross-origin 이슈가 있어, HTML 내에 다른 도메인의 이미지 등을 삽입한 경우는 제대로 캡쳐되지 않음. Proxy 를 만들던지 해야 됨


- 2. background-image 를 잘못 그리는 이슈가 있음. 아래와 같이 코드 수정.

i could not render background images and it seemed to be cover or contain background size, so i've changed line 350 in 0.4.1 version to:

topPos = isNaN(parseInt(bgposition[1], 10)) ? topPos : parseInt(bgposition[1], 10);

and it works!


출처: https://github.com/niklasvh/html2canvas/issues/265