Hi,
I am trying to upload my canvas’ base64 string to my server.
I can get the string uploaded no problem, and it appears to be a proper base64 string
e.g.:data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABdwAAAJYCAYAAAB4syQkAAAAAXNSR0IArs4c6QAAIABJREFUeF7s3Q3UlVWdKPAt30ggiKIYwWuaNqXw..........<Omitted middle section too long>..................BCmgr8P9wxlSeRO0LRwAAAABJRU5ErkJggg==
But when I try to open the base64 image using it seems to be a corrupt image.
The Base64 string generated by thunkable canvas seems to be so much longer than other base64 strings I generate using php etc. It also contains lots of whitespaces which base64 doesnt usually contain from memory?
Has anyone experienced this before? Is there something I need to do to convert this on server side? is it a non standard Base64 image?
PS: I’ve tried many iterations of blocks etc. Including wrapping it in a JSON object.
thanks