2012-08-22 34 views
0

我想用java來讀/寫一個圖像,並且我有一些代碼。但我唐諾如何使用代碼,尤其是在爭論串...在與這些代碼一起來到樣品演示在java中閱讀/寫圖像

其實,用法是這樣的:

double[] data = Image.load("src/chap08_romsrams/common/lena256.ppm", "../common/lena256.ppm"); 

這:

Image.write(l, "P3", 256, "src/chap08_romsrams/ex1_roms/lena_processed.ppm", "lena_processed.ppm"); 

比方說,我有一個名爲lena.ppm一個256 * 256的圖像,它位於同一文件夾中java文件,我該如何使用這些功能來讀取/寫入圖像...?

非常感謝!

import java.io.BufferedReader; 
import java.io.FileInputStream; 
import java.io.FileOutputStream; 
import java.io.IOException; 
import java.io.InputStream; 
import java.io.InputStreamReader; 
import java.io.OutputStream; 
import java.io.PrintStream; 
import java.util.List; 
import java.util.regex.Matcher; 
import java.util.regex.Pattern; 

public class Image { 
public static double[] load(String... fn) { 
    InputStream in = null; 

    for (String string : fn) { 
     try { 
      in = new FileInputStream(string); 
     } catch (IOException e) { 
      /* Empty */ 
     } 
     if (in != null) break; 
    } 

    if (in == null) { 
     throw new RuntimeException("Failed to load input image in Image.load(String...), tried to load image from " + fn); 
    } 

    BufferedReader reader = new BufferedReader(new InputStreamReader(in)); 

    try { 
     String type = reader.readLine(); // Type 
     reader.readLine(); // Comment 
     String res = reader.readLine(); // Dimensions 
     reader.readLine(); // Intensity range 

     Pattern p = Pattern.compile("(\\d+) (\\d+)"); 
     Matcher m = p.matcher(res); 
     m.matches(); 
     Integer width = Integer.parseInt(m.group(1)); 
     Integer height = Integer.parseInt(m.group(2)); 

     System.err.println(width + "x" + height); 

     double[] data = new double[width * height * ((type.equals("P3")) ? 3 : 1)]; 
     String line; 
     int i = 0; 
     while((line = reader.readLine()) != null) 
      data[i++] = Integer.parseInt(line); 

     reader.close(); 

     return data; 

    } catch(IOException e) { 
     throw new RuntimeException(e); 
    } 
} 

public static void write(List<Double> data, String... fn) { 
    write(data, "P2", 1024, fn); 
} 

public static void write(List<Double> data, String type, int width, String... fn) { 
    OutputStream out = null; 

    for (String string : fn) { 
     try { 
      out = new FileOutputStream(string); 
     } catch (IOException e) { 
      /* Empty */ 
     } 
     if (out != null) break; 
    } 

    if (out == null) { 
     throw new RuntimeException("Failed to file for output in Image.write(List<Double>, String, int, String...), tried to open " + fn); 
    } 

    PrintStream ps = new PrintStream(out); 

    ps.println(type); 
    int height = data.size()/(width * ((type.equals("P3") ? 3 : 1))); //1024; 
    ps.println("#generated"); 
    ps.println("" + width + " " + height); 
    ps.println("255"); 
    for(Double d : data) 
     ps.println((int)(d.doubleValue())); 
} 

}

+0

你確實有很多代碼 –

回答

1

你爲什麼不嘗試Java Imaging API。這裏是你如何做Image IO的example。 希望這有助於..

+0

這將增加更多到您的[搜索](http://java.sun.com/javase/technologies/desktop/media).. – pratikabu