java dump bitmap byte content

어떻게 dump bitmap 데 이 터 를 파일 로 가 져 옵 니까?때로는 이미지 데 이 터 를 한 자리 씩 분석 해 야 할 때 도 있다.이 방법 은 압축 되 지 않 은 데이터 로 인터넷 에서 많은 방법 이 호출 된 bitmap 의 copress 인터페이스 에서 byte 데 이 터 를 얻 고 압축 된 것 입 니 다.
 
try {
				BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("/sdcard/pic.txt"));
				int bHeight = bitmap.getHeight();
				int bWidth = bitmap.getWidth();
				int rowBytes = bitmap.getRowBytes();
				
				byte[] bytes = new byte[rowBytes * bHeight];
				for(int i=0;i<bHeight;i++){
					for(int j=0;j<bWidth;j++){
						int pvalue = bitmap.getPixel(j, i);
						for(int k=0;k<4;k++){
							bytes[rowBytes * i + j*4 + k] = (byte)(pvalue >> (24 - i * 8)); 
						}
					}
				}
				
				bos.write(bytes);
				bos.flush();
				bos.close();
			} catch (IOException e) {
				e.printStackTrace();
			}

 
인터넷 의 압축 코드 구현
ByteArrayOutputStream stream = new ByteArrayOutputStream();
			bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
			byte[] byteArray = stream.toByteArray();
			try {
				BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("/sdcard/bubblepic.txt"));
				bos.write(byteArray);
				bos.flush();
				bos.close();
			} catch (IOException e) {
				e.printStackTrace();
			}

좋은 웹페이지 즐겨찾기