Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can not export the modified image correctly #29

Open
superlin opened this issue Aug 13, 2015 · 1 comment
Open

Can not export the modified image correctly #29

superlin opened this issue Aug 13, 2015 · 1 comment

Comments

@superlin
Copy link

I'm trying to export an image from the canvas using canvas.toDataURL(). However I got a transparent image, and I find a way to fix it(http://stackoverflow.com/questions/12538193/why-does-my-canvas-go-blank-after-converting-to-image).

exports.canvas = function () {
  var canvas = document.createElement('canvas');
  var setting = { premultipliedAlpha: false, preserveDrawingBuffer: true };
  try {
    gl = canvas.getContext('webgl', setting) || canvas.getContext('experimental-webgl', setting);
  } catch (e) {
    gl = null;
  }
  if (!gl) {
    throw 'This browser does not support WebGL';
  }
  // ...
}
@superlin
Copy link
Author

Still not correct in chrome of ios 8, always get the last image, not the current image.

but ok in chrome of android

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant