-
Bugs Description
BDD-Task!
|
Beta Was this translation helpful? Give feedback.
Answered by
da-in
Mar 3, 2023
Replies: 3 comments
-
아이폰 가진 사람으로 확인해보니까 이미지 확장자 이름이 |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Beta Was this translation helpful? Give feedback.
0 replies
-
관련 이슈들입니다. 근본적인 해결법이라 우회적인 방식으로, 좋지 못합니다. 일단 아래 구현으로 적용해두되, 추후 리팩토링에서 toPng(previewRef.current).then(() => {
if (previewRef.current) {
toPng(previewRef.current).then(() => {
if (previewRef.current) {
toPng(previewRef.current).then((dataUrl) => {
download(dataUrl, 'thumbnail.png');
});
}
});
}
}); html-to-image dom-to-image |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
da-in
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
관련 이슈들입니다. 근본적인 해결법이라 우회적인 방식으로, 좋지 못합니다.
모두가
html-to-canvas
를 사용하는 것을 근본적인 해결책이라 말합니다 ㅋㅋㅋㅋㅋ😆일단 아래 구현으로 적용해두되, 추후 리팩토링에서
html-to-canvas
를 사용하면 좋을 것 같습니다.html-to-image
bubkoo/html-to-image#52
dom-to-image
tsayen/dom-to-image#343