我創建了畫布爲contenteditable ='true'並將剪貼板上的圖像粘貼在畫布上。圖像出現在畫布旁邊,不在畫布的頂部,如下圖所示。嘗試將畫布轉換爲圖像時,我會看到空白圖像。這是因爲我的畫布不能保存先前粘貼的圖像。我如何獲得圖像?帆布contenteditable不工作
HTML
<!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>
<style>
body{ background-color: ivory; }
canvas{border:1px solid red;}
</style>
<script>
function convert()
{
var canvas=document.getElementById("canvas");
var ctx=canvas.getContext("2d");
//ctx.fillRect(50,50,150,75);
var theImage=document.getElementById("toImage");
theImage.src=canvas.toDataURL();
}
</script>
</head>
<body>
<canvas id="canvas" width=300 height=300 contenteditable='true'></canvas>
<button type="button" onClick="convert()">Click</button>
<img id="toImage" width=300 height=300>
</body>
</html>
圖片
我不認爲有一個畫布相關的頁面編輯主機contenteditable。由於畫布需要繪圖命令,所以這樣的編輯器肯定不會拖放。如果源圖像是已複製到剪貼板的本地圖像,您也會遇到CORS問題。如果你真的,真的很有野心**你可以在這裏使用六種API方法編寫canvas頁內編輯器:http://www.whatwg.org/specs/web-apps/current -work/multipage/editing.html#editing-host – markE