I have simple registration form with an option to upload one's image after cropping.I am using the example found at
In the javascript section, on form submit they are converting the cropped image into blob and later sending it to 'whatever.php'
formData.append("cropped_image[]", blob);
My question is, in the 'whatever.php' page how do i capture the blob and use it to convert into an image and save in a folder on the server. Please help