Last active
September 13, 2020 20:13
-
-
Save georgebyte/5169458 to your computer and use it in GitHub Desktop.
jQuery: Background color picker (pick color from image by clicking on it)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var image = new Image(); | |
image.src = "sample.jpg"; | |
$(image).load(function() { | |
ctx.drawImage(image, 0, 0); | |
}); | |
$(canvas).click(function(e) { | |
var canvasOffset = $(canvas).offset(); | |
var canvasX = Math.floor(e.pageX-canvasOffset.left); | |
var canvasY = Math.floor(e.pageY-canvasOffset.top); | |
var imageData = ctx.getImageData(0, 0, canvas.width, canvas.height); | |
var pixels = imageData.data; | |
var pixelRedIndex = ((canvasY - 1) * (imageData.width * 4)) + ((canvasX - 1) * 4); | |
var pixelcolor = "rgba("+pixels[pixelRedIndex]+", "+pixels[pixelRedIndex+1]+", "+pixels[pixelRedIndex+2]+", "+pixels[pixelRedIndex+3]+")"; | |
$("body").css("backgroundColor", pixelcolor); | |
}); |
What is pixelRedIndex
mean, and why we need to multiply with number 4
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sorry for such a late answer. I didn't see your comment.
Here is a sample html page, that uses this script.