I'm converting an image to base-64 through
btoa(String.fromCharCode.apply(null, new Uint8Array(arrayBuffer)));
This line works perfectly in all the browser except IE11.
IE11 throws an error if file size exceeds 1.5 MB.
Any workaround for this?
I'm converting an image to base-64 through
btoa(String.fromCharCode.apply(null, new Uint8Array(arrayBuffer)));
This line works perfectly in all the browser except IE11.
IE11 throws an error if file size exceeds 1.5 MB.
Any workaround for this?
Got the workaround,
Anybody facing this issue can refer to Mobz answer