Convert image Blob or File object to different formats (png, webp and jpeg)
Convert image blob to PNG blob
Convert image blob to JPEG blob
Convert image blob to WebP blob
Either use the callback or as a Promise
blob.ToPNG(function(pngBlob){
})
blob.ToPNG(pngBlob = >{
})
blob.ToPNG().then(function(pngBlob) {
})
blob.ToPNG().then(pngBlob => {
})
The source blog image is drawn on a canvas object and then toDataURL method of canvas to convert to different file type.