Drop an image, click a pixel, and read its hex color. The tool also shows RGB and HSL values, keeps a history strip of your recent picks, and gives every swatch a copy button. 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
The tool draws your image to a hidden HTML canvas at its natural resolution. When you click a pixel, the Canvas API call ctx.getImageData(x, y, 1, 1).data returns the exact RGBA bytes. Those bytes are formatted as hex, RGB, and HSL, and the color is added to a small history strip of recent picks.
All color sampling happens locally in your browser tab using the Canvas API. Our servers are not involved at any point.