If I put an alert between 'toDataURL' and a canvas draw using the result then everything proceeds as expected.
Does toDataURL fire an event on the canvas or should I use some kind of 'onLoad' for the image src I am setting it to?
IE img.addEventListener('load',function(){...}
.toDataURL
is a synchronous operation that does not trigger any events.Being synchronous, it's a blocking operation so no
alert
is required to prevent the next command from executing before toDataURL is fully complete. The next command will execute when toDataURL is fully complete.Since you're using the dataURL as an image source, you will want to give that image time to load by assigning a callback: