Заливка замкнутой области по команде
Есть картинки на сайте, например, синяя фигура с черными краями, необходим скрипт заливающий эту область определенным цветом, но по команде, например по нажатию клавиш мышки или отдельно сделанной кнопки, т.е. при каждом нажатии заливается не вся область с одинаковым цветом а только один пиксель, при следующем нажатии еще один пиксель и так далее.
Код:
<!DOCTYPE HTML>
<html>
<head>
<style>
body {
margin: 0px;
padding: 0px;
}
#myCanvas {
border: 1px solid #9C9898;
}
</style>
</head>
<body>
<canvas id="myCanvas" width="578" height="200"></canvas>
<script>
var canvas = document.getElementById('myCanvas');
var context = canvas.getContext('2d');
// begin custom shape
context.beginPath();
context.moveTo(170, 80);
context.bezierCurveTo(130, 100, 130, 150, 230, 150);
context.bezierCurveTo(250, 180, 320, 180, 340, 150);
context.bezierCurveTo(420, 150, 420, 120, 390, 100);
context.bezierCurveTo(430, 40, 370, 30, 340, 50);
context.bezierCurveTo(320, 5, 250, 20, 250, 50);
context.bezierCurveTo(200, 5, 150, 20, 170, 80);
// complete custom shape
context.closePath();
context.lineWidth = 5;
context.fillStyle = '#8ED6FF';
context.fill();
context.strokeStyle = 'blue';
context.stroke();
</script>
</body>
</html>
<html>
<head>
<style>
body {
margin: 0px;
padding: 0px;
}
#myCanvas {
border: 1px solid #9C9898;
}
</style>
</head>
<body>
<canvas id="myCanvas" width="578" height="200"></canvas>
<script>
var canvas = document.getElementById('myCanvas');
var context = canvas.getContext('2d');
// begin custom shape
context.beginPath();
context.moveTo(170, 80);
context.bezierCurveTo(130, 100, 130, 150, 230, 150);
context.bezierCurveTo(250, 180, 320, 180, 340, 150);
context.bezierCurveTo(420, 150, 420, 120, 390, 100);
context.bezierCurveTo(430, 40, 370, 30, 340, 50);
context.bezierCurveTo(320, 5, 250, 20, 250, 50);
context.bezierCurveTo(200, 5, 150, 20, 170, 80);
// complete custom shape
context.closePath();
context.lineWidth = 5;
context.fillStyle = '#8ED6FF';
context.fill();
context.strokeStyle = 'blue';
context.stroke();
</script>
</body>
</html>
Не могу переделать этот код... необходимо: вставить кнопку "Залить один пиксель". например картинка например 200*200px перебиралась построчно.
Код:
<style> body {margin: 0px;}</style>
<script type="text/javascript" src="js/jquery-1.8.2.min.js"></script>
<canvas id=pane width=200 height=200></canvas>
<script>
window.onload = function()
{
var canvas = document.getElementById('pane');
var context = canvas.getContext('2d');
var w = 50, h = 50;
context.fillStyle = 'rgb(232,11,12)';
context.fillRect(w+50, h+50, 10, 10);
}
</script>
<script type="text/javascript" src="js/jquery-1.8.2.min.js"></script>
<canvas id=pane width=200 height=200></canvas>
<script>
window.onload = function()
{
var canvas = document.getElementById('pane');
var context = canvas.getContext('2d');
var w = 50, h = 50;
context.fillStyle = 'rgb(232,11,12)';
context.fillRect(w+50, h+50, 10, 10);
}
</script>