我刚刚完成用于图片分析和修复的网络应用程序。我需要帆布帮助。这就是我的工作:
修改
<img id="imgEdit" src="<?php echo $imagename; ?>" border="0">
<canvas id="canvasPaint"
width="<?php echo $width; ?>"
height="<?php echo $height; ?>">
</canvas>
<input type="button" value="Clear" onClick="clearCanvas();" class="button">
<input type="button" value="Save" onClick="saveViaAJAX();" class="button">
<div id="debugFilenameConsole">Wait for a while after clicking the button and the filename of the image will be shown to you. </div>
但是现在我遇到了clearCanvas函数的问题。因为浏览器无法读取属性'width'。这是我的完整源代码。如何,请有人告诉我我做错了什么。
修改
function clearCanvas()
{
var theCanvas = document.getElementById("canvasPaint");
if (theCanvas && theCanvas.getContext) {
var ctx = theCanvas.getContext("2d");
if (ctx) {
ctx.clearRect(0, 0, <?php echo $width; ?>, <?php echo $height; ?>);
var srcImg = document.getElementById("imgEdit");
ctx.drawImage(srcImg, 0,0);
clickX = new Array();
clickY = new Array();
clickDrag = new Array();
}}}
function saveViaAJAX()
{
var theCanvas = document.getElementById("canvasPaint");
var canvasData = theCanvas.toDataURL("image/jpg");
var postData = "canvasData="+canvasData;
var ajax = new XMLHttpRequest();
ajax.open("POST",'canvasSave.php',true);
ajax.setRequestHeader('Content-Type', 'canvas/upload');
ajax.send(postData);
}
我需要在用户点击“保存图片”后将画布保存为本地磁盘上的jpeg图像。这意味着,画布透明的区域会变成黑色背景。
我需要这样的东西: http://i48.tinypic.com/2w5vhpv.jpg
答案 0 :(得分:0)
您可以使用canvas.toDataUrl('image/jpg')
将画布保存到图像文件。
关于第一个问题:通常使用context.clearRect(0, 0, canvas.width, canvas.height)
方法清除画布。话虽这么说,如果画布和上下文声明已正确完成,您的代码应该按预期工作。