android 將圖片內容解析成位元組數組,將位元組數群組轉換為ImageView

來源:互聯網
上載者:User
  1 package com.bingo.util;
2
3 import java.io.BufferedOutputStream;
4 import java.io.ByteArrayOutputStream;
5 import java.io.File;
6 import java.io.FileOutputStream;
7 import java.io.IOException;
8 import java.io.InputStream;
9
10 import android.graphics.Bitmap;
11 import android.graphics.BitmapFactory;
12 import android.graphics.Matrix;
13
14 public class ImageDispose {
15
16
17
18 /**
19 * @param 將圖片內容解析成位元組數組
20 * @param inStream
21 * @return byte[]
22 * @throws Exception
23 */
24 public static byte[] readStream(InputStream inStream) throws Exception {
25 byte[] buffer = new byte[1024];
26 int len = -1;
27 ByteArrayOutputStream outStream = new ByteArrayOutputStream();
28 while ((len = inStream.read(buffer)) != -1) {
29 outStream.write(buffer, 0, len);
30 }
31 byte[] data = outStream.toByteArray();
32 outStream.close();
33 inStream.close();
34 return data;
35
36 }
37 /**
38 * @param 將位元組數群組轉換為ImageView可調用的Bitmap對象
39 * @param bytes
40 * @param opts
41 * @return Bitmap
42 */
43 public static Bitmap getPicFromBytes(byte[] bytes,
44 BitmapFactory.Options opts) {
45 if (bytes != null)
46 if (opts != null)
47 return BitmapFactory.decodeByteArray(bytes, 0, bytes.length,
48 opts);
49 else
50 return BitmapFactory.decodeByteArray(bytes, 0, bytes.length);
51 return null;
52 }
53 /**
54 * @param 圖片縮放
55 * @param bitmap 對象
56 * @param w 要縮放的寬度
57 * @param h 要縮放的高度
58 * @return newBmp 新 Bitmap對象
59 */
60 public static Bitmap zoomBitmap(Bitmap bitmap, int w, int h){
61 int width = bitmap.getWidth();
62 int height = bitmap.getHeight();
63 Matrix matrix = new Matrix();
64 float scaleWidth = ((float) w / width);
65 float scaleHeight = ((float) h / height);
66 matrix.postScale(scaleWidth, scaleHeight);
67 Bitmap newBmp = Bitmap.createBitmap(bitmap, 0, 0, width, height,
68 matrix, true);
69 return newBmp;
70 }
71
72 /**
73 * 把Bitmap轉Byte
74 * @Author HEH
75 * @EditTime 2010-07-19 上午11:45:56
76 */
77 public static byte[] Bitmap2Bytes(Bitmap bm){
78 ByteArrayOutputStream baos = new ByteArrayOutputStream();
79 bm.compress(Bitmap.CompressFormat.PNG, 100, baos);
80 return baos.toByteArray();
81 }
82 /**
83 * 把位元組數組儲存為一個檔案
84 * @Author HEH
85 * @EditTime 2010-07-19 上午11:45:56
86 */
87 public static File getFileFromBytes(byte[] b, String outputFile) {
88 BufferedOutputStream stream = null;
89 File file = null;
90 try {
91 file = new File(outputFile);
92 FileOutputStream fstream = new FileOutputStream(file);
93 stream = new BufferedOutputStream(fstream);
94 stream.write(b);
95 } catch (Exception e) {
96 e.printStackTrace();
97 } finally {
98 if (stream != null) {
99 try {
100 stream.close();
101 } catch (IOException e1) {
102 e1.printStackTrace();
103 }
104 }
105 }
106 return file;
107 }
108
109 }

編輯器載入中...

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.