Image color picker is a browser-based eyedropper. Drop an image, click a pixel, and read its hex, RGB, and HSL values. A magnifier helps pinpoint the exact pixel, and a history strip keeps your recent picks. All processing runs in your browser using the Canvas API.
Drop an image or click to choose
JPG, PNG, WebP, GIF, SVG, AVIF. Stays in your browser.
CURRENT PICK
Choose an image to begin.
HOVER
Hover over the image.
ACTIONS
Direct links for common eyedropper workflows.
getImageData(x, y, 1, 1) returns the RGBA bytes for the sampled pixel. HSL is derived from RGB with the standard cylindrical-coordinate formula.getImageData). No external library.Reviewed and tested May 25, 2026.