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
Corner has something like jaggies when fill it with background. This problem shows recently.
The text was updated successfully, but these errors were encountered:
the same question ,how did you solve it ?
Sorry, something went wrong.
` function exportAsPng3() { var date = new Date(); bootbox.prompt({ title: "Enter output filename (without '.9.png')", value: "shadow_" + date.getHours() + "" + date.getMinutes() + "" + date.getSeconds(), callback: function(result) { if (result !== null && result !== "") { //Show ninepatches If hidden when exporting var hideNinepatchesTmp = true; var showContentAreaTmp = false; if (hideNinepatches || showContentArea) { hideNinepatchesTmp = hideNinepatches; showContentAreaTmp = showContentArea; showContentArea = false; hideNinepatches = true; //清除patches redraw(); }
//Use BlobHD If supported if (canvas.toBlobHD) { canvas.toBlobHD(function (blob) { saveAs(blob, result + ".9.png"); }); } else { canvas.toBlob(function (blob) { saveAs(blob, result + ".9.png"); }); } } } });
} `
No branches or pull requests
Corner has something like jaggies when fill it with background.
This problem shows recently.
The text was updated successfully, but these errors were encountered: