概要

BufferedImageからカーソルオブジェクトを作成し、これをコンポーネントに設定します。

サンプルコード

BufferedImage bi = new BufferedImage(32, 32, BufferedImage.TYPE_INT_ARGB);
Graphics2D g2 = bi.createGraphics();
g2.setPaint(Color.RED);
g2.drawOval(8, 8, 16, 16);
g2.dispose();
button.setCursor(getToolkit().createCustomCursor(bi, new Point(16, 16), "oval"));
View in GitHub: Java, Kotlin

解説

  • サイズが32x32pxBufferedImageからToolkit#createCustomCursor(...)メソッドを使用してカーソルオブジェクトを作成
    • ホットスポットはそのBufferedImageの中心に設定
  • String: BufferedImageに文字を描画
  • drawOval: BufferedImageに円を描画
  • paintIcon: BufferedImageIconを描画

参考リンク

コメント