1

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?

letsintegreat
  • 3,328
  • 4
  • 18
  • 39
Atal Shrivastava
  • 674
  • 1
  • 9
  • 35

1 Answers1

1

Got the workaround,

Anybody facing this issue can refer to Mobz answer

https://stackoverflow.com/a/9458996/2739391

Atal Shrivastava
  • 674
  • 1
  • 9
  • 35