Ver Mensaje Individual
  #1 (permalink)  
Antiguo 09/12/2013, 01:04
quieropaginaweb
 
Fecha de Ingreso: noviembre-2012
Mensajes: 73
Antigüedad: 12 años, 2 meses
Puntos: 1
Por favor, canvas guardar imagen

Alguien puede ayudarme, necestio modificar este código
Código PHP:
// Generate the signature image
  
function generateImage() {
    
    var 
saveImageCanvas document.createElement("canvas");
    
saveImageCanvas.width canvas.width;
    
saveImageCanvas.height canvas.height;
            
    var 
ctx saveImageCanvas.getContext("2d");
    
ctx.lineWidth 1;
    
ctx.strokeStyle 'black';
    
ctx.font="30px Arial";
      
    
ctx.fillStyle="white";
    
ctx.fillRect(0,0,canvas.width,canvas.height);      
      
    
ctx.beginPath();
    for (var 
1m_penData.lengthi++) {
      
// Draw a line from the previous down point to this down point.
      // This is the simplist thing you can do; a more sophisticated program
      // can perform higher quality rendering than this!
          
      
var prev tabletToScreen(m_penData[1]);
      var 
act tabletToScreen(m_penData[i]);      
        
      if (
m_penData[i].sw == 1) {
        
ctx.moveTo(prev.xprev.y);
        
ctx.lineTo(act.xact.y);
      }  
    }
    
ctx.closePath();
    
ctx.stroke();
      
    
preview.src saveImageCanvas.toDataURL("image/png");    
    

    
  } 
Quisiera saber como guardar el archivo.
Alguna ayuda
Gracias