本文介绍了如何从一个画布复制到其他画布的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这里是
我有这个作为我的源画布
i have this as my source canvas
HTML
<h1>Source Canvas</h1>
<canvas id="source" width=436 height=567></canvas>
<h1>Destination Canvas</h1>
<canvas id="destination" width=436 height=567></canvas>
javascript
javascript
var sourceImage, ctx, sourceCanvas, destinationCanvas;
//get the canvases
sourceCanvas = document.getElementById('source');
destinationCanvas = document.getElementById('destination');
//draw the source image to the source canvas
ctx = sourceCanvas.getContext('2d');
function start() {
ctx.drawImage(img1, 0, 0);
ctx.globalCompositeOperation = "source-atop";
var pattern = ctx.createPattern(img, 'repeat');
ctx.rect(0, 0, sourceCanvas.width, sourceCanvas.height);
ctx.fillStyle = pattern;
ctx.fill();
ctx.globalAlpha = .10;
ctx.drawImage(img1, 0, 0);
ctx.drawImage(img1, 0, 0);
ctx.drawImage(img1, 0, 0);
//ctx.globalAlpha = 1;
}
var img1 = new Image();
var img = new Image();
img.onload = function () {
img1.onload = function () {
start();
}
img1.src = "https://dl.dropboxusercontent.com/u/139992952/stackoverflow/4jiSz1.png";
}
img.src = "https://dl.dropboxusercontent.com/u/139992952/stackoverflow/BooMu1.png";
我想在目标画布中显示源画布中的内容。
i want to to show what is in source canvas in my destination canvas.
我累了
var image, destinationCtx;
//create the image
image = new Image();
//get the base64 data
image.src = sourceCanvas.toDataURL('image/png');
//get the destination context
destinationCtx = destinationCanvas.getContext('2d');
//copy the data
destinationCtx.drawImage(image, 0, 0);
//done
但没有运气。我错过了什么?
通过imageData复制,通过Base64数据复制,通过直接复制复制任何方法都可以完成我的工作。我试用时
but having no luck. am i missing something?Copy via imageData,Copy via Base64 data,Copy via direct draw any method will do my job.when i try with
它复制但是当我把我的源画布编写器它不起作用?我错过了什么吗?
http://jsperf.com/copying-a-canvas-elementit copies but when i put my source canvas writer it does not work ? am i missing something?
推荐答案
您可以直接将一个画布复制到另一个画布上。像这样......
You can directly copy one canvas over other. Like this...
var destinationCtx;
//get the destination context
destinationCtx = destinationCanvas.getContext('2d');
//copy the data
destinationCtx.drawImage(sourceCanvas, 0, 0);
这篇关于如何从一个画布复制到其他画布的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!