Android 游戏开发之Bitmap位图学习

时间:2022-12-27 08:11:48

一、几种简单的获取Bitmap位图实例

1、通过BitmapFactory获取

BitmapFactory.decodeResource(Resources res, int Id);  //参数一:资源实例  参数二:资源ID

 

2、通过Bitmap获取任意宽高或获取位图中任意区域

Bitmap.createBitmap(Bitmap source, int x, int y, int width, int height);//参数一:位图资源,参数二:位图中X坐标,参数三,位图中Y坐标,参数四:生成位图的宽度,参数四:生成位图的高度。   注意:X+width不能大于source原本位图的宽度,width不能等于0,y+height不能大于原本位图高度,height不能小于0


.................