We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
is crashing because of 'probably' this bug: https://bugzilla.mozilla.org/show_bug.cgi?id=700533
''' source.onload = function () { renderCanvasContext.drawImage(source, 0, 0, renderCanvas.width, renderCanvas.height);
// place fill bitmap into svg var fillBitmap = renderCanvas.toDataURL("image/png"); if(typeof callback === 'function'){ callback(fillBitmap); } renderCanvas.remove(); }; // catch browsers without native svg support source.onerror = function() { console.error("Can't export! Maybe your browser doesn't support native SVG. Sorry."); }; };
''' is running into the onerror case.
TODO: check if svg width and height is properly set and read the bug report for possible workarounds.
The text was updated successfully, but these errors were encountered:
Can't reproduce this bug. Need more information.
Sorry, something went wrong.
ok i can reproduce it now... It only happens for bitmaps like jpg and png.
No branches or pull requests
is crashing because of 'probably' this bug: https://bugzilla.mozilla.org/show_bug.cgi?id=700533
'''
source.onload = function () {
renderCanvasContext.drawImage(source, 0, 0, renderCanvas.width, renderCanvas.height);
'''
is running into the onerror case.
TODO: check if svg width and height is properly set and read the bug report for possible workarounds.
The text was updated successfully, but these errors were encountered: