For those facing this in the future, I went around this:
Change label type to "Native":
Label: { type: 'Native', color: '#000000' },
And I also grabbed the canvas id (HTML 5 by the way) and dropped the image into a new window:
function saveImage() { var canvas = document.getElementById("canvas"); window.open(canvas.toDataURL("image/jpeg")); }
source share