四十六、android中的Bitmap

來源:互聯網
上載者:User

在Android SDK中可以支援的圖片格式如下:png , jpg , gif和bmp。

1.Bitmap的建立

藉助於BitmapFactory。
1)資源中的圖片
使用BitmapFactory擷取位元影像
Bitmap bmp = BitmapFactory.decodeResource(this.getResources(), R.drawable.testImg);
或者是
Resources res=getResources();
//使用BitmapDrawable擷取位元影像
//使用BitmapDrawable (InputStream is)構造一個BitmapDrawable;
//使用BitmapDrawable類的getBitmap()擷取得到位元影像;
// 讀取InputStream並得到位元影像
InputStream is=res.openRawResource(R.drawable.testImg);
BitmapDrawable bmpDraw=new BitmapDrawable(is);
Bitmap bmp=bmpDraw.getBitmap();

2)SD卡中的圖片
Bitmap bmp = BitmapFactory.decodeFile("/sdcard/testBitmap/testImg.png")

2. 把 Bitmap 儲存在sdcard中
File fImage = new File("/sdcard/testBitmap/testImg.png");  
fImage.createNewFile();
FileOutputStream iStream = new FileOutputStream(fImage);
bmp.compress(CompressFormat.PNG, 100, iStream);
iStream.close();
fImage.close();
iStream =null;
fImage =null;
//寫到輸出資料流裡,就儲存到檔案了。

3.使用網路中的圖片

//圖片的連結地址  
String imgURLStr = "http://tx.bdimg.com/sys/portrait/item/990e6271796a7a6c170c.jpg";  
URL imgURL = new URL(imgURLStr);  
URLConnection conn = imgURL.openConnection();  
conn.connect();  
InputStream is = conn.getInputStream();  
BufferedInputStream bis = new BufferedInputStream(is);

//下載圖片
Bitmap bmp = BitmapFactory.decodeStream(bis);

//關閉Stream
bis.close();  
is.close();
imgURL =null;

4.顯示圖片
1)轉換為BitmapDrawable對象顯示位元影像
// 轉換為BitmapDrawable對象
        BitmapDrawable bmpDraw=new BitmapDrawable(bmp);
        // 顯示位元影像
        ImageView iv2 = (ImageView)findViewById(R.id.ImageView02);
       iv2.setImageDrawable(bmpDraw);
2)使用Canvas類顯示位元影像
canvas.drawBitmap(bmp, 0, 0, null);

5.縮放位元影像
1)將一個位元影像按照需求重畫一遍,畫後的位元影像就是我們需要的了,與位元影像的顯示幾乎一樣:drawBitmap(Bitmap bitmap, Rect src, Rect

dst, Paint paint)。

2)在原有位元影像的基礎上,縮放原位元影像,建立一個新的位元影像:CreateBitmap(Bitmap source, int x, int y, int width, int height,

Matrix m, boolean filter)

3)藉助Canvas的scale(float sx, float sy) ,不過要注意此時整個畫布都縮放了。

4)藉助Matrix:

            Matrix matrix=new Matrix();
            matrix.postScale(0.2f, 0.2f);
            Bitmap dstbmp=Bitmap.createBitmap(bmp,0,0,bmp.getWidth(),bmp.getHeight(),matrix,true);
            canvas.drawBitmap(dstbmp, 10, 10, null);
6.旋轉位元影像
藉助Matrix或者Canvas來實現。

            Matrix matrix=new Matrix();
            matrix.postRotate(45);
            Bitmap dstbmp=Bitmap.createBitmap(bmp,0,0,bmp.getWidth(), bmp.getHeight(),matrix,true);
            canvas.drawBitmap(dstbmp, 10, 10, null);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.