Swing/BlurButton のバックアップ(No.8)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/BlurButton へ行く。
- 1 (2013-12-09 (月) 00:54:27)
- 2 (2013-12-09 (月) 13:53:21)
- 3 (2013-12-12 (木) 17:35:41)
- 4 (2014-06-03 (火) 21:26:53)
- 5 (2014-09-30 (火) 01:24:50)
- 6 (2015-01-23 (金) 19:23:11)
- 7 (2016-06-17 (金) 19:44:47)
- 8 (2016-06-17 (金) 22:01:53)
- 9 (2017-09-17 (日) 18:10:39)
- 10 (2018-02-27 (火) 14:26:14)
- 11 (2018-06-02 (土) 16:48:33)
- 12 (2020-04-08 (水) 16:07:26)
- 13 (2021-10-19 (火) 12:56:20)
- 14 (2024-07-18 (木) 02:20:45)
- title: ConvolveOpでコンポーネントにぼかしを入れる tags: [JButton, ConvolveOp, BufferedImage] author: aterai pubdate: 2013-12-09T00:54:27+09:00 description: ConvolveOpを使って、使用不可状態のJButtonにぼかしを入れます。
概要
ConvolveOp
を使って、使用不可状態のJButton
にぼかしを入れます。
Screenshot
Advertisement
サンプルコード
class BlurButton extends JButton {
private final ConvolveOp op = new ConvolveOp(
new Kernel(3, 3, new float[] {
.05f, .05f, .05f,
.05f, .60f, .05f,
.05f, .05f, .05f
}), ConvolveOp.EDGE_NO_OP, null);
private BufferedImage buf;
public BlurButton(String label) {
super(label);
//System.out.println(op.getEdgeCondition());
}
@Override protected void paintComponent(Graphics g) {
if (isEnabled()) {
super.paintComponent(g);
} else {
buf = Optional.ofNullable(buf).filter(bi -> bi.getWidth() == getWidth() && bi.getHeight() == getHeight())
.orElseGet(() -> new BufferedImage(getWidth(), getHeight(), BufferedImage.TYPE_INT_ARGB));
Graphics2D g2 = buf.createGraphics();
super.paintComponent(g2);
g2.dispose();
g.drawImage(op.filter(buf, null), 0, 0, null);
}
}
@Override public Dimension getPreferredSize() {
Dimension d = super.getPreferredSize();
d.width += 3 * 3;
return d;
}
}
View in GitHub: Java, Kotlin解説
- 上
- デフォルトの
JButton
- デフォルトの
- 中
ConvolveOp
を使って、使用不可状態のJButton
にぼかし- Java Swing Hacks 9. 使用不可状態のコンポーネントをぼかし表示するから引用
- 下
WindowsLookAndFeel
の場合、右端1
ドットの表示が乱れる場合があるので、EdgeCondition
をデフォルトのEDGE_ZERO_FILL
から、EDGE_NO_OP
に変更WindowsLookAndFeel
の場合、これらのぼかしを入れると文字が拡大されて?(左右のBorder
が広いから?)、文字列が省略されてしまうので、JButton#getPreferredSize()
をオーバーライドして幅を拡大
参考リンク
- ConvolveOp (Java Platform SE 7)
- 5.8.1 イメージ処理操作の使用方法
- Java Image Processing - Blurring for Beginners
- Java Swing Hacks 9. 使用不可状態のコンポーネントをぼかし表示する