在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);