java用BufferedImage和Graphics画图传到页面背景为黑色如何设置成透明的
java用BufferedImage和Graphics画图传到页面背景为黑色如何设置成透明的,代码如下intwidth=200;intheight=200;Buffere...
java用BufferedImage和Graphics画图传到页面背景为黑色如何设置成透明的,代码如下
int width = 200;
int height = 200;
BufferedImage image = new BufferedImage(width, height,
BufferedImage.TYPE_INT_RGB);
Graphics g = image.getGraphics();
g.setColor(Color.YELLOW);
g.fillOval(0,0, width, height);
g.dispose();
try {
ImageIO.write(image, "JPEG", response.getOutputStream()); 展开
int width = 200;
int height = 200;
BufferedImage image = new BufferedImage(width, height,
BufferedImage.TYPE_INT_RGB);
Graphics g = image.getGraphics();
g.setColor(Color.YELLOW);
g.fillOval(0,0, width, height);
g.dispose();
try {
ImageIO.write(image, "JPEG", response.getOutputStream()); 展开
5个回答
展开全部
看 Oracle 官方教程
http://docs.oracle.com/javase/tutorial/uiswing/misc/trans_shaped_windows.html
它提到了,透明是指 Color 的 alpha 小的值,比如 0 就是完全透明,255 是完全不透明。
Color bgColor = new Color(200, 0, 0, 0); 就是红色透明。
http://docs.oracle.com/javase/tutorial/uiswing/misc/trans_shaped_windows.html
它提到了,透明是指 Color 的 alpha 小的值,比如 0 就是完全透明,255 是完全不透明。
Color bgColor = new Color(200, 0, 0, 0); 就是红色透明。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Graphics画的背景图不能实现Opuper透明功能,只能用setBackGround的方法。
JFrame jf=new JFrame();
jf.setBounds(new Retangle(100,100,600,400));
JDeskPane jd=new JDeskPane();
jd.setSize(600,400);
Image im=ImageIcon.getImage(this,class.getResource("图片路径"));
JLabel jl=new JLabe();
jl.setIcon(im);
jd.setBackGround(jl);
jf.getContentPane(jd);
jf.setVisible(true);
JFrame jf=new JFrame();
jf.setBounds(new Retangle(100,100,600,400));
JDeskPane jd=new JDeskPane();
jd.setSize(600,400);
Image im=ImageIcon.getImage(this,class.getResource("图片路径"));
JLabel jl=new JLabe();
jl.setIcon(im);
jd.setBackGround(jl);
jf.getContentPane(jd);
jf.setVisible(true);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
要透明的前提是图片格式要是png的。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
类型 TYPE_INT_ARGB
输出 PNG
输出 PNG
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询