Html2Canvas doesnt render images when capturing Iframes
When have some html rendered in iframe and we are trying to capture it with html2canvas but the images seems to be broken always? anyone have been able to figure this out?
Is it possible that the iframe hasn't fully loaded? I have also encountered the same problem before, because the iframe is lazy to load and must be fully loaded, or maybe other plugins are used in the iframe, which may cause the plugin position to turn black.
Is it possible that the iframe hasn't fully loaded? I have also encountered the same problem before, because the iframe is lazy to load and must be fully loaded, or maybe other plugins are used in the iframe, which may cause the plugin position to turn black.
Hey, found the solution. You need to pass base64 string of the images to the iframe.
Is it possible that the iframe hasn't fully loaded? I have also encountered the same problem before, because the iframe is lazy to load and must be fully loaded, or maybe other plugins are used in the iframe, which may cause the plugin position to turn black.
Hey, found the solution. You need to pass base64 string of the images to the iframe.
Can you share the implementation? thanks