java另存图片底色变黑问题_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java另存图片底色变黑问题

java另存图片底色变黑问题

 2014/7/16 12:37:04  lu_tan  程序员俱乐部  我要评论(0)
  • 摘要:BufferedImagebufferImage;FileoutputFile=null;try{Imageimage=ImageIO.red(newFile("c:\\pic\\aa.jpeg"));intwidth=image.getWidth(null);intheight=image.getHeight(null);bufferImage=newBufferedImage(width,height,BufferedImage.TYPE_INT_RGB);bufferImage
  • 标签:
BufferedImage bufferImage;
File outputFile = null;
try{
     Image image = ImageIO.red(new File("c:\\pic\\aa.jpeg"));
     int width = image.getWidth(null);
     int height = image.getHeight(null);
     bufferImage= new BufferedImage (width,height,BufferedImage.TYPE_INT_RGB);
       bufferImage.getGraphics().drawImage(image,0,0,width,height,image.getGraphics().getColor(),null);//设置底色

       outputFile = new File("c:\\pic\\bb.jpeg");
       if(!outputFile.exists())
            outputFile.mkdirs();
       ImageIO.write(bufferImage,"jpeg",outputFile);
}catch(IOException e){
     e.printStackTrace();
}
  • 相关文章
发表评论
用户名: 匿名