歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Java 圖片格式轉換(包括bmp-->jpg)

java在做圖片類型轉換時,JDK本身提供的類對   GIF->JPG GIF->PNG PNG->GIF(X) PNG->JPG 這幾種類型的轉換支持比較好,可以通過類直接轉,代碼如下:

  1. /** 
  2.      * Created on 2010-7-13  
  3.      * <p>Discription:[convert GIF->JPG GIF->PNG PNG->GIF(X) PNG->JPG ]</p> 
  4.      * @param source 
  5.      * @param formatName 
  6.      * @param result 
  7.      * @author:[[email protected]] 
  8.      */  
  9.     public static void convert(String source, String formatName, String result)  
  10.     {  
  11.         try  
  12.         {  
  13.             File f = new File(source);  
  14.             f.canRead();  
  15.             BufferedImage src = ImageIO.read(f);  
  16.             ImageIO.write(src, formatName, new File(result));  
  17.         }  
  18.         catch (Exception e)  
  19.         {  
  20.             e.printStackTrace();  
  21.         }  
  22.     }  
Copyright © Linux教程網 All Rights Reserved