изображение в другой цветовой схеме с помощью jq
Здравствуйте! Есть вопрос по jquery, а именно по скрипту, который (я так понимаю) создаёт новое изображение в "Black&White". Скачал пример, не могу разобраться в нём.
Ну вот, скажем, как создать с помощью jq изображение с другой цветовой палитрой... Ах-да, забыл... вот пример, который я скачал: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Трали-Вали</title> <style type="text/css"> body { background: #fff; color: #000; font: 14px/140% Arial, Helvetica, sans-serif; margin: 40px 0; } a { text-decoration: none; color: #86AEBB; } img { border: none; } h2 { font: bold 14px/110% Arial, Helvetica, sans-serif; margin: 0 0 30px; padding: 0 0 20px; color: #999; border-bottom: solid 1px #ccc; clear: both; } h3 { font: bold 16px/120% Arial, Helvetica, sans-serif; margin: 0; } #pagewrap { width: 296px; margin: 0 auto; } .item { width: 1138px; margin: 0 0 30px 30px; float: left; } .item.first { clear: left; margin-left: 0; } </style> <script src="jquery.js" type="text/javascript"></script> <script type="text/javascript"> // On window load. This waits until images have loaded which is essential $(window).load(function(){ // Fade in images so there isn't a color "pop" document load and then on window load $(".item img").fadeIn(500); // clone image $('.item img').each(function(){ var el = $(this); el.css({"position":"absolute"}).wrap("<div class='img_wrapper' style='display: inline-block'>").clone().addClass('img_grayscale').css({"position":"absolute","z-index":"998","opacity":"0"}).insertBefore(el).queue(function(){ var el = $(this); el.parent().css({"width":this.width,"height":this.height}); el.dequeue(); }); this.src = grayscale(this.src); }); // Fade image $('.item img').mouseover(function(){ $(this).parent().find('img:first').stop().animate({opacity:1}, 1000); }) $('.img_grayscale').mouseout(function(){ $(this).stop().animate({opacity:0}, 1000); }); }); // Grayscale w canvas method function grayscale(src){ var canvas = document.createElement('canvas'); var ctx = canvas.getContext('2d'); var imgObj = new Image(); imgObj.src = src; canvas.width = imgObj.width; canvas.height = imgObj.height; ctx.drawImage(imgObj, 0, 0); var imgPixels = ctx.getImageData(0, 0, canvas.width, canvas.height); for(var y = 0; y < imgPixels.height; y++){ for(var x = 0; x < imgPixels.width; x++){ var i = (y * 4) * imgPixels.width + x * 4; var avg = (imgPixels.data[i] + imgPixels.data[i + 1] + imgPixels.data[i + 2]) / 3; imgPixels.data[i] = avg; imgPixels.data[i + 1] = avg; imgPixels.data[i + 2] = avg; } } ctx.putImageData(imgPixels, 0, 0, 0, 0, imgPixels.width, imgPixels.height); return canvas.toDataURL(); } </script> </head> <body> <div id="pagewrap"> <div class="item"> <a href="#"><img src="images/flow.jpg"></a> </div> </div> </body> </html> Заранее спасибо за помощь :thanks: |
Ну и что? jquery тут ни про чем вообще. Банально преобразуешь все каналы к среднему цвету, тем самым делая изображение серым. И все дела.
imgPixels.data[i] = avg; imgPixels.data[i + 1] = avg; imgPixels.data[i + 2] = avg; На каждый пиксель приходится четыре элемента массива imgPixels.data, на каждый из каналов цвета (r, g, b) и еще один на альфа прозрачность. То есть первый пиксель - это первые четыре элемента, второй пиксель - элементы с индексами 4-7, и тд. Все просто на самом деле. |
спасибо большое!
|
Часовой пояс GMT +3, время: 13:50. |