Android中将资源文件转为Bitmap对象

Android中将资源文件转为Bitmap对象

 BitmapFactory.Options options = new BitmapFactory.Options();
                options.inJustDecodeBounds =true;
                Bitmap  bitmap2 = BitmapFactory.decodeResource(getResources(), R.drawable.yangben, options);

你可能感兴趣的:(Android)