Java中在JLabel中添加了图片如何在图片上面加一层透明层

 我来答
laobaitu0322
推荐于2017-10-02 · TA获得超过744个赞
知道小有建树答主
回答量:900
采纳率:33%
帮助的人:635万
展开全部

直接设置一个透明图片的JLabel呗

我正好有个透明标签类,你试试看

import java.awt.AlphaComposite;
import java.awt.Color;
import java.awt.Composite;
import java.awt.Graphics2D;
import java.awt.GraphicsConfiguration;
import java.awt.Image;
import java.awt.Transparency;

import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;


public class LimpidLabel extends JLabel {

public static void main(String[] args) {
JFrame frm = new JFrame("demo");
LimpidLabel lbl = new LimpidLabel("1.png", 0.5f);
frm.add(lbl);
frm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frm.pack();
frm.setLocationRelativeTo(null);
frm.setVisible(true);
}

public LimpidLabel(String imagePath, float alpha) {
this(new ImageIcon(imagePath).getImage(), alpha);
}

public LimpidLabel(Image img, float alpha) {
int w, h;
try
{
w = img.getWidth(this); //读取图片长度
h = img.getHeight(this); //读取图片宽度

GraphicsConfiguration gc = new JFrame().getGraphicsConfiguration();  // 本地图形设备 
Image image = gc.createCompatibleImage(w, h, Transparency.TRANSLUCENT); //建立透明画布
Graphics2D g = (Graphics2D) image.getGraphics();  //在画布上创建画笔

Composite a = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, alpha); //指定透明度为alpha
g.setComposite(a);
g.drawImage(img, 0, 0, this);  //将image画到g画笔所在的画布上
g.dispose();  //释放内存

this.setIgnoreRepaint(true); //不自动重绘
this.setFocusable(false); //设置没有焦点
this.setIcon(new ImageIcon(image));  //把刚才生成的半透明image设置为Icon
} catch (Exception e) {
e.printStackTrace();
}
}

}
匿名用户
2015-08-10
展开全部
图片最好在JPanel上,然后随便添加一个JPanel,就是了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式