JAva判断ピクチャファイルタイプ

2399 ワード

作業中にbmpファイルをjpgファイルに変換する作業(bmpファイルが大きすぎて後期の処理で問題が発生する可能性があるため、jpgに変換すると歪みがありますが、私たちのプログラムにはあまり影響しません.)に遭遇し、bmpにjpgを変換するとjava自体がサポートされるので、あまり注目しなくてもいいのですが、知らなかったら、次の文章を見てみましょう.
アドレス--http://blog.csdn.net/shixing_11/article/details/5731050
    しかし、画像のフォーマットについては接尾辞名で判断するのは正確ではありません.手動で接尾辞名を変更することができますが、ファイルの大きさや本質は変わりません.javaでファイルを判断し、bmpファイルであればjpgに変換し、直接入庫しなければなりません.ネットからいくつかの方法を探して、下の使い勝手を試して、くだらないことを言わずに直接コードをつけてみました(一部変更しても、変更してアップロードに使うのは画像かどうかを判断することもできます).
public static String getImageType(String path) throws IOException {   
        FileInputStream fis = new FileInputStream(path);   
		int leng = fis.available();   
		BufferedInputStream buff = new BufferedInputStream(fis);   
		byte[] mapObj = new byte[leng];   
		buff.read(mapObj, 0, leng);   
			
		String type = "";   
		ByteArrayInputStream bais = null;   
		MemoryCacheImageInputStream mcis = null;   
		try {   
			bais = new ByteArrayInputStream(mapObj);   
		    mcis = new MemoryCacheImageInputStream(bais);   
		   Iterator itr = ImageIO.getImageReaders(mcis);   
		    while (itr.hasNext()) {   
			    ImageReader reader = (ImageReader)  itr.next();   
			    String imageName = reader.getClass().getSimpleName();   
			    if(imageName!=null){
			    	if("GIFImageReader".equals(imageName)){
			    		type = "gif";
			     	}else if("JPEGImageReader".equals(imageName)){
			     		type = "jpg";
			     	}else if("PNGImageReader".equals(imageName)){
			     		type = "png";
			     	}else if("BMPImageReader".equals(imageName)){
			     		type = "bmp";
			     	}else{
			     		type = "noPic";
			     	}
			     }  
		     }   
		}catch (Exception e) {
			type = "noPic";	
		} finally {   
		    if (bais != null) {   
		        try {   
		            bais.close();   
		        } catch (IOException ioe) {   
		        }   
		    }   
		    if (mcis != null) {   
		        try {   
		            mcis.close();   
		        } catch (IOException ioe) {   
		        }   
		    }   
		}   
		return type;   
	}

 
 みんなの役に立つことを望みます