I've looked on many sites including SO and cannot find a reliable method for converting PNG to JPG using just JavaScript.
I tried the following using canvas:
var imageDataJpeg = document.getElementById('pic5-canvas').toDataURL("image/jpeg");
But the resulting image is broken and has no data.
Is there any way to do this?