Cloned DOM node will not render a png.
In this case
var node = $btn.closest('.component-graph-container').find('.graph')[0];
node will render a png.
in this case using .clone()
let node = $btn.closest('.component-graph-container').clone();
will export a png but will be empty.
I'm not quite sure what is going on - it is necessary in my case to clone the original DOM element to make changes without mutating the original data. The clone will console.log with the expected dom elements.
I also tried creating a new element and appending the clone to that and passing that to domtoimage but had the same results as the clone iteself.
Cloned DOM elements will render the same as original elements
PNG is created but when opens alerts "[PNG] could not be opened because it is empty."
2.5.2
Here's a reproducible example: https://jsfiddle.net/x36a9oz2/6/
The first implementation works, the second does not. The only difference is the second one runs .cloneNode(true) on the node as it is passed into toPng
Looking at the source code, I don't understand why this is happening. cloneNode is used in a very similar way here, so I'm not sure why it doesn't work if the node is cloned prior to passing it in.
This also happens if you just try to create an element using document.createElement and pass that in. It's like the node has to be actually rendered into the DOM tree before this package works. Does anyone have an idea of why this is the case?
I would love to hear a solution to this problem too.
Does anyone still need this sorted? I am cloning and rendering PNG successfully at https://beatjosh.com/budgets/FY2019/CTH (Click the SNAPSHOT button in the right toolbar.)
Facing the same issue ? Anyone able to figure it out ?
I am having the same issue too - if cloned before passing in it does not render. Not sure why
For my case, it seems that the width (it can also be height) was not specified in the cloned node.
Therefore, the canvas created by the library had width 0 and when it was converted to URL it was empty.
Specify the width and height when calling toPng.