android中的Bitmap
在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