The image to be uploaded starts off in a canvas, gets converted to a blob, is appended to the FormData with FormData.append(‘file’, blob) and posted with ajax.
But all the images end up with the name ‘blob’.
Should I append another key:value to the FormData to get a better name? If so, what is the correct key? I don’t find that info in the docs…