How can I submit Canvas content inside a PHP CodeIgniter form?
One of the inputs on my form is a Canvas for a drawing or webcam photo.
I created a tag <input name="picture" type="hidden"> and set its value to the base64 content:
myPictureInput.value = canvas.toDataURL();
However, when the user submits the form, the POST value read from the <input> is truncated to 64kb.
Is there an optimal way to post or submit images together with form data?