Mousemoveでキャンバスからピクセルカラーを取得するにはどうすればよいですか?

Patricia Arquette
リリース: 2024-10-31 10:03:01
オリジナル
230 人が閲覧しました

How to Get the Pixel Color from a Canvas on Mousemove?

Mousemove でキャンバスからピクセル カラーを取得する

概要

この投稿では、マウス カーソルの下にあるピクセルの RGB 値を取得する方法について説明します。キャンバス要素上を移動します。自己完結型の例を使用して包括的なアプローチを提供します。

解決策

これを実現するには、まず目的の寸法でキャンバスを作成します。

<code class="html"><canvas id="example" width="200" height="60"></canvas></code>
ログイン後にコピー

塗りつぶし正方形などの要素を含むキャンバス:

<code class="js">const example = document.getElementById('example');
const ctx = example.getContext('2d');

ctx.fillStyle = randomColor();
ctx.fillRect(0, 0, 50, 50);

ctx.fillStyle = randomColor();
ctx.fillRect(55, 0, 50, 50);

ctx.fillStyle = randomColor();
ctx.fillRect(110, 0, 50, 50);</code>
ログイン後にコピー

最後に、カーソルの位置のピクセル値をキャプチャする Mousemove イベント ハンドラーを追加します:

<code class="js">$('#example').mousemove(function(e) {
  // Calculate the position relative to the canvas
  const pos = findPos(this);
  const x = e.pageX - pos.x;
  const y = e.pageY - pos.y;
  const coord = `x=${x}, y=${y}`;

  // Get the pixel value
  const c = this.getContext('2d');
  const p = c.getImageData(x, y, 1, 1).data;

  // Convert to hex format
  const hex = "#" + ("000000" + rgbToHex(p[0], p[1], p[2])).slice(-6);

  // Display the color information
  $('#status').html(coord + "<br>" + hex);
});</code>
ログイン後にコピー

ユーティリティ関数

このコードは、要素の位置を検索し、RGB 値を 16 進数に変換するためのサポート関数に依存しています。これらの関数を次のように定義します。

<code class="js">function findPos(obj) {
  let curleft = 0, curtop = 0;
  if (obj.offsetParent) {
    do {
      curleft += obj.offsetLeft;
      curtop += obj.offsetTop;
    } while (obj = obj.offsetParent);
    return { x: curleft, y: curtop };
  }
  return undefined;
}

function rgbToHex(r, g, b) {
  if (r > 255 || g > 255 || b > 255) throw "Invalid color component";

  return ((r << 16) | (g << 8) | b).toString(16);
}

function randomInt(max) {
  return Math.floor(Math.random() * max);
}

function randomColor() {
  return `rgb(${randomInt(256)}, ${randomInt(256)}, ${randomInt(256)})`;
}</code>
ログイン後にコピー

ライブ サンプル

動作中の完全な例を確認するには、次のリンクにアクセスしてください。

https://bl.ocks.org /wayneburkett/ca41a5245a9f48766b7bc881448f9203

以上がMousemoveでキャンバスからピクセルカラーを取得するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!