• title: RGBImageFilterでアイコンの色調を変更 tags: [ImageIcon, RGBImageFilter, JLabel] author: aterai pubdate: 2006-08-21T11:55:27+09:00 description: RGBImageFilterで色調を変更したアイコンの用意し、評価用コンポーネントを作成します。 hreflang:
       href: http://java-swing-tips.blogspot.com/2008/12/jlabel-star-rating-bar.html
       lang: en

概要

RGBImageFilterで色調を変更したアイコンの用意し、評価用コンポーネントを作成します。

サンプルコード

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[] arrays) {
    filter = new float[arrays.length];
    System.arraycopy(arrays, 0, filter, 0, arrays.length);
    canFilterIndexColorModel = false;
  }
  @Override public int filterRGB(int x, int y, int argb) {
    int r = (int) (((argb >> 16) & 0xff) * filter[0]);
    int g = (int) (((argb >>  8) & 0xff) * filter[1]);
    int b = (int) (((argb      ) & 0xff) * filter[2]);
    return (argb & 0xff000000) | (r<<16) | (g<<8) | (b);
  }
}
View in GitHub: Java, Kotlin

解説

上記のサンプルは、RGBImageFilterを使用して、一つのアイコンから複数の色の異なるアイコンを生成し、5段階の評価を行うコンポーネントを作成しています。クリックしたアイコンの位置が評価レベルになります。

参考リンク

コメント