Всем привет, спустя энное количество часов в гугле нашел вот такое решение:
http://jsfiddle.net/9SEMf/2/
Но при попытке его повторить на локальном компьютере получаю ошибку:
Unable to get image data from canvas because the canvas has been tainted by cross-origin data.
Uncaught Error: SECURITY_ERR: DOM Exception 18
Вот код моего файла:
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title> - jsFiddle demo</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.js"></script>
<link rel="stylesheet" type="text/css" href="css\normalize.css">
<link rel="stylesheet" type="text/css" href="css\result-light.css">
<style type="text/css">
body {background: lightblue;padding: 20px;}
pre {color: black}
img {position: relative;}
</style>
<script type="text/javascript">
$(window).load(function(){
$(function() {
$('img').mousemove(function(e) {
if (!this.canvas) {
this.canvas = $('<canvas/>').css({
width: this.width + 'px',
height: this.height + 'px'
})[0];
this.canvas.getContext('2d').drawImage(this, 0, 0, this.width, this.height);
}
var pixelData = this.canvas.getContext('2d').getImageData(event.offsetX, event.offsetY, 1, 1).data;
$('#output').html('R: ' + pixelData[0] + '<br>G: ' + pixelData[1] + '<br>B: ' + pixelData[2] + '<br>A: ' + pixelData[3]);
});
});
});
</script>
</head>
<body>
<img id="my" src="img\pairs\logo.png">
<pre id="output">R: 255<br>G: 255<br>B: 255<br>A: 144</pre>
</body></html>
Что я делаю не так?