You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-we...@googlegroups.com
Hi,
I'm currently working on a software in GWT that loads an image into a Canvas object and performs a number or transformations on it. Finally a image url is extracted from the Canvas object using the Canvas.toDataUrl(String) function.
Now to the issue: the above described works fine in all browsers except IE (it's IE9 but I have tried setting the browser to different compatibility modes, all with the same result). In all other browsers the toDataUrl() function returns a string that looks like:
data:image/png;base64,...
but in IE it only returns:
data:
and nothing else. Has anyone experienced this issue before. What is it due to?
/Ulas
Chris Price
unread,
Jun 1, 2012, 4:19:12 AM6/1/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-we...@googlegroups.com
This is wild speculation but, it could be a X-domain security issue
[1]? If it's only happening in IE, I'd check to see that the loading
of the image is using the same technique in IE as it is in Chrome, FF,
etc. e.g. sprite versus data-url.