Swing/RatingLabel のバックアップ(No.9)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/RatingLabel へ行く。
- 1 (2006-08-21 (月) 11:55:27)
- 2 (2006-08-21 (月) 14:45:47)
- 3 (2006-08-23 (水) 17:33:51)
- 4 (2006-11-07 (火) 12:38:34)
- 5 (2006-11-09 (木) 20:53:32)
- 6 (2007-08-23 (木) 23:03:37)
- 7 (2008-10-20 (月) 18:20:37)
- 8 (2008-11-25 (火) 11:19:25)
- 9 (2012-10-20 (土) 04:20:53)
- 10 (2013-02-24 (日) 22:31:53)
- 11 (2013-12-10 (火) 20:18:42)
- 12 (2014-01-31 (金) 21:23:15)
- 13 (2014-11-28 (金) 16:31:17)
- 14 (2016-02-16 (火) 19:35:51)
- 15 (2017-07-11 (火) 15:31:58)
- 16 (2018-02-24 (土) 19:51:30)
- 17 (2018-07-12 (木) 18:07:59)
- 18 (2018-12-19 (水) 20:39:43)
- 19 (2020-11-12 (木) 09:41:03)
- 20 (2022-11-16 (水) 16:41:11)
TITLE:RGBImageFilterでアイコンの色調を変更
Posted by aterai at 2006-08-21
RGBImageFilterでアイコンの色調を変更
RGBImageFilterで色調を変更したアイコンの用意し、評価用コンポーネントを作成します。
- &jnlp;
- &jar;
- &zip;
サンプルコード
private final ImageProducer ip = orgIcon.getImage().getSource();
private ImageIcon makeStarImageIcon(float[] filter) {
SelectedImageFilter sif = new SelectedImageFilter(filter);
return new ImageIcon(
createImage(new FilteredImageSource(ip, sif)));
}
private class SelectedImageFilter extends RGBImageFilter {
private final float[] filter;
public SelectedImageFilter(float[] filter) {
this.filter = filter;
canFilterIndexColorModel = true;
}
public int filterRGB(int x, int y, int argb) {
Color color = new Color(argb, true);
float[] array = new float[4];
color.getComponents(array);
return new Color(array[0]*filter[0],
array[1]*filter[1],
array[2]*filter[2],
array[3]).getRGB();
}
}
View in GitHub: Java, Kotlin解説
RGBImageFilterを使用して、一つのアイコンから複数の色の異なるアイコンを生成しています。
上記のサンプルは、アマゾンなど*1でよく見かける5段階の評価を行うコンポーネントです。クリックしたアイコンの位置が評価レベルになります。
参考リンク
- PI Diagona Icons Pack 1.0 - Download Royalty Free Icons and Stock Images For Web & Graphics Design
- アイコンを利用しています。
コメント
- 素晴しい!:)--
- 「Rating Bar」と言うみたいです。Masuga Design » Unobtrusive AJAX Star Rating Bar -- aterai
- アイコンを変更、アイコンの間隔を設定 -- aterai
- スクリーンショットを更新 -- aterai