1

我有三个arrys:

 clickX = [],
    clickY = [],
    clickDrag = [];

当您单击向下时会发生这种情况:

$('#canvasCursor').mousedown(function (e) {
    console.log('down');
    mouseX = e.pageX - this.offsetLeft;
    mouseY = e.pageY - this.offsetTop;
    paint = true;
    addClick(e.pageX - this.offsetLeft, e.pageY - this.offsetTop);
    redraw();
});

在这里它将点击添加到数组并绘制。:

函数重绘(){ ctx.clearRect(0,0,ctx.canvas.width,ctx.canvas.height);// 清除画布

    ctx.strokeStyle = "green";
    ctx.lineJoin = "round";
    ctx.lineWidth = brushSize*2;

    for (var i = 0; i < clickX.length; i++) {
        ctx.beginPath();
        if (clickDrag[i] && i) {
            ctx.moveTo(clickX[i - 1], clickY[i - 1]);
        } else {
            ctx.moveTo(clickX[i] - 1, clickY[i]);
        }
        ctx.lineTo(clickX[i], clickY[i]);
        ctx.closePath();
        ctx.stroke();
    }
}

我现在正试图摆脱数组方式,因为当我使用滑块动态更改 var brushSize 时,它​​会以新大小而不是当时的大小重绘整个图片。我不知道如何保存数组中任何特定对象的大小,然后将它们分开绘制。

我不介意我不能实现这种方式给我的撤消功能,只要我能修复画笔大小的变化。在这里你可以看到我在胡说八道!http://www.taffatech.com/Paint.html

- 它似乎更慢,我猜是因为它是从数组中绘制的

4

4 回答 4

1

编辑:对不起,修正了一些错别字 编辑 2:再一次。测试起来有点困难。

没有理由每次都重新绘制每个点。您可以修改您的侦听器来执行此操作:

var prevMouseX=null,prevMouseY=null;
$('#canvasCursor').mousedown(function (e) {
    paint = true;

    console.log('down');
    //get current mouse coords
    mouseX = e.pageX - this.offsetLeft;
    mouseY = e.pageY - this.offsetTop;

    if (prevMouseX==null) {
        //store these coordinates for next time if they haven't been defined yet
        prevMouseX = mouseX;
        prevMouseY = mouseY;
    }
});

$('#canvasCursor').mousemove(function (e) {
    //get current mouse coords
    mouseX = e.pageX - this.offsetLeft;
    mouseY = e.pageY - this.offsetTop;

    if (prevMouseX==null) {
        //store these coordinates for next time if they haven't been defined yet
        prevMouseX = mouseX;
        prevMouseY = mouseY;
    }

    if (paint) {drawline(mouseX,mouseY,prevMouseX,prevMouseY);}

    //store these coordinates for next time
    prevMouseX = mouseX;
    prevMouseY = mouseY;
});

其中函数drawLine定义为:

function drawline(x1,y1,x2,y2) {
ctx.strokeStyle = "green";
    ctx.lineJoin = "round";
    ctx.lineWidth = brushSize*2;

    ctx.beginPath();
    ctx.moveTo(x1,y1);
    ctx.lineTo(x2,y2);
    ctx.closePath();
    ctx.stroke();
}
于 2013-06-15T23:37:16.823 回答
1

不要将绘画存储到数组中
它会严重减慢绘画速度。只需绘制最新的线条而不清除画布。这样 lineWeight 的变化不会影响到之前的图纸。所以删除ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);for循环。您可能还希望仅在发生更改时更改上下文样式(lineWidth 等),而不是每次运行redraw()函数时。

撤消支持
为每个鼠标按下会话制作不同的画布并将它们绘制在一起,您可以轻松地制作撤消功能。通过按撤消,它只是将最新的画布从画布数组中拼接出来。谷歌了解更多关于在临时画布上绘图的信息。

于 2013-06-15T23:45:32.570 回答
1

这是如何使用画布像Paint一样绘制

如果您想要撤消功能,最好的选择是记录用户绘制的所有线段。

这是通过包含用户绘制的所有点(折线)的点数组来完成的。

要跟踪画笔大小和画笔颜色,您还需要在数组中包含此信息。

所以数组的每个元素都会有关于每个线段的信息:

  • x:这条线段的结束x坐标
  • y:结束的y坐标
  • size:画笔大小(lineWidth)
  • color:画笔颜色(strokeStyle)
  • 模式:“begin”表示新行的开始,“end”表示该行的结束。

它是如何工作的?

当用户拖动线段时,每个 mousemove 事件都用context.lineTo和扩展当前线段context.stroke

当用户选择新的 BrushSize 或 BrushColor 时,context.beginPath 开始context.beginPath

当用户按住 Undo 按钮时,最后一条线段中的最后一个点会从点数组中弹出。然后重新绘制所有幸存的线段。按住时,撤消按钮每 1/10 秒触发一次。

这是代码和小提琴:http: //jsfiddle.net/m1erickson/AEYYq/

<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" media="all" href="css/reset.css" /> <!-- reset css -->
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<!--[if lt IE 9]><script type="text/javascript" src="../excanvas.js"></script><![endif]-->

<style>
    body{ background-color: ivory; }
    canvas{border:1px solid red;}
</style>

<script>
$(function(){

    var canvas=document.getElementById("canvas");
    var ctx=canvas.getContext("2d");
    var lastX;
    var lastY;
    var mouseX;
    var mouseY;
    var canvasOffset=$("#canvas").offset();
    var offsetX=canvasOffset.left;
    var offsetY=canvasOffset.top;
    var isMouseDown=false;
    var brushSize=20;
    var brushColor="#ff0000";
    var points=[];


    function handleMouseDown(e){
      mouseX=parseInt(e.clientX-offsetX);
      mouseY=parseInt(e.clientY-offsetY);

      // Put your mousedown stuff here
      ctx.beginPath();
      if(ctx.lineWidth!=brushSize){ctx.lineWidth=brushSize;}
      if(ctx.strokeStyle!=brushColor){ctx.strokeStyle=brushColor;}
      ctx.moveTo(mouseX,mouseY);
      points.push({x:mouseX,y:mouseY,size:brushSize,color:brushColor,mode:"begin"});
      lastX=mouseX;
      lastY=mouseY;
      isMouseDown=true;
    }

    function handleMouseUp(e){
      mouseX=parseInt(e.clientX-offsetX);
      mouseY=parseInt(e.clientY-offsetY);

      // Put your mouseup stuff here
      isMouseDown=false;
      points.push({x:mouseX,y:mouseY,size:brushSize,color:brushColor,mode:"end"});
    }


    function handleMouseMove(e){
      mouseX=parseInt(e.clientX-offsetX);
      mouseY=parseInt(e.clientY-offsetY);

      // Put your mousemove stuff here
      if(isMouseDown){
          ctx.lineTo(mouseX,mouseY);
          ctx.stroke();     
          lastX=mouseX;
          lastY=mouseY;
          // command pattern stuff
          points.push({x:mouseX,y:mouseY,size:brushSize,color:brushColor,mode:"draw"});
      }
    }


    function redrawAll(){

        if(points.length==0){return;}

        ctx.clearRect(0,0,canvas.width,canvas.height);

        for(var i=0;i<points.length;i++){

          var pt=points[i];

          var begin=false;

          if(ctx.lineWidth!=pt.size){
              ctx.lineWidth=pt.size;
              begin=true;
          }
          if(ctx.strokeStyle!=pt.color){
              ctx.strokeStyle=pt.color;
              begin=true;
          }
          if(pt.mode=="begin" || begin){
              ctx.beginPath();
              ctx.moveTo(pt.x,pt.y);
          }
          ctx.lineTo(pt.x,pt.y);
          if(pt.mode=="end" || (i==points.length-1)){
              ctx.stroke();
          }
        }
        ctx.stroke();
    }

    function undoLast(){
        points.pop();
        redrawAll();
    }

    ctx.lineJoin = "round";
    ctx.fillStyle=brushColor;
    ctx.lineWidth=brushSize;

    $("#brush5").click(function(){ brushSize=5; });
    $("#brush10").click(function(){ brushSize=10; });
    // Important!  Brush colors must be defined in 6-digit hex format only
    $("#brushRed").click(function(){ brushColor="#ff0000"; });
    $("#brushBlue").click(function(){ brushColor="#0000ff"; });

    $("#canvas").mousedown(function(e){handleMouseDown(e);});
    $("#canvas").mousemove(function(e){handleMouseMove(e);});
    $("#canvas").mouseup(function(e){handleMouseUp(e);});

    // hold down the undo button to erase the last line segment
    var interval;
    $("#undo").mousedown(function() {
      interval = setInterval(undoLast, 100);
    }).mouseup(function() {
      clearInterval(interval);
    });


}); // end $(function(){});
</script>

</head>

<body>
    <p>Drag to draw. Use buttons to change lineWidth/color</p>
    <canvas id="canvas" width=300 height=300></canvas><br>
    <button id="undo">Hold this button down to Undo</button><br><br>
    <button id="brush5">5px Brush</button>
    <button id="brush10">10px Brush</button>
    <button id="brushRed">Red Brush</button>
    <button id="brushBlue">Blue Brush</button>
</body>
</html>
于 2013-06-16T05:46:11.557 回答
0

我接受了这个问题并用它来创建一个功能齐全的“着色书”解决方案,并将其发布在 Github 上。https://github.com/collinph/jl-coloringbook

它处理所有鼠标问题+撤消和我们正在讨论的其他事情+可能出现的许多大小问题。它确实将坐标存储在一个数组中,并且并不像某些人认为的那样慢——无论如何都不会在 Chrome 或 Safari 中。

于 2021-10-29T20:18:21.230 回答