ColorConvertOpで画像をグレースケールに変換
Total: 17227
, Today: 1
, Yesterday: 1
Posted by aterai at
Last-modified:
概要
ColorConvertOp
を使って画像をグレースケールに変換します。
Screenshot
Advertisement
サンプルコード
Image img = icon1.getImage();
BufferedImage source = new BufferedImage(
img.getWidth(this), img.getHeight(this), BufferedImage.TYPE_INT_ARGB);
Graphics g = source.createGraphics();
g.drawImage(img, 0, 0, this);
g.dispose();
ColorConvertOp colorConvert = new ColorConvertOp(
ColorSpace.getInstance(ColorSpace.CS_GRAY), null);
BufferedImage destination = colorConvert.filter(source, null);
icon2 = new ImageIcon(destination);
View in GitHub: Java, Kotlin解説
用意したアイコンからBufferedImage
を作成し、これをColorConvertOp#filter
メソッドを使ってグレースケールに変換しています。
上記のサンプルでは各JLabel
をクリックでIcon
として表示されている元画像とグレースケール画像を切り替えています。
- 以下のように
GrayFilter.createDisabledImage(...)
を使った場合よりきれいに変換可能icon2 = new ImageIcon(GrayFilter.createDisabledImage(img));
GrayFilter
の代わりに以下のようなRGBImageFilter
を継承したフィルタを使う方法もあるclass MyGrayFilter extends RGBImageFilter { public int filterRGB(int x, int y, int argb) { // int a = (argb >> 24) & 0xFF; int r = (argb >> 16) & 0xFF; int g = (argb >> 8) & 0xFF; int b = (argb ) & 0xFF; // http://ofo.jp/osakana/cgtips/grayscale.phtml int m = (2 * r + 4 * g + b) / 7; //NTSC Coefficients return (argb & 0xFF_00_00_00) | (m << 16) | (m << 8) | m; } } // ... ImageProducer ip = new FilteredImageSource(img.getSource(), new MyGrayFilter()); icon2 = new ImageIcon(Toolkit.getDefaultToolkit().createImage(ip));
BufferedImage.TYPE_BYTE_GRAY
でBufferedImage
を作成して複写してもグレースケールに変換可能だが、透過色を使用している場合は注意が必要
BufferedImage bi = new BufferedImage(w, h, BufferedImage.TYPE_BYTE_GRAY);
Graphics g = bi.createGraphics();
//g.setColor(Color.WHITE);
g.fillRect(0, 0, w, h); // pre-fill: alpha
g.drawImage(img, 0, 0, this);
g.dispose();
参考リンク
- Image Color Gray Effect : Java examples (example source code) » 2D Graphics GUI » Image
- opus-i | シンプル素材 テンプレート 音楽素材
- osakana.factory - グレースケールのひみつ
- via: プログラマメモ2: グレースケール
- Swing - image manipulation