当前位置:   article > 正文

Java实现图片类型转换_java 转换cgm图

java 转换cgm图

Java实现图片类型转换


下面展示一些 关键代码

	//常用类型
	public static final String TYPE_BMP = "bmp";
	public static final String TYPE_JPG = "jpg";
	public static final String TYPE_PNG = "png";
	public static final String TYPE_JEPG = "jepg";
	/**
	 * 
	 * @param oldPicture 原图片文件
	 * @param newPicture 新图片文件
	 * @param type	新图片的文件类型
	 * @return
	 * @throws IOException
	 */
	public static boolean pictureTransition(File oldPicture, File newPicture, String type) throws IOException{
		if(oldPicture == null) {
			throw new IOException("原文件为NULL");
		}
		if(newPicture == null) {
			throw new IOException("新文件为NULL");
		}
		BufferedImage oldBufferedImage = ImageIO.read(oldPicture);
		BufferedImage newBufferedImage = new BufferedImage(oldBufferedImage.getWidth(), oldBufferedImage.getHeight(),BufferedImage.TYPE_INT_BGR);
		Graphics2D newGraphics2D = newBufferedImage.createGraphics();
		newGraphics2D.drawImage(oldBufferedImage, 0, 0, oldBufferedImage.getWidth(), oldBufferedImage.getHeight(), null);
		newGraphics2D.dispose();
		return ImageIO.write(newBufferedImage, type, newPicture);
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号