如何显示在特定 x,y 处偏移的非常大图像的一部分
问问题
287 次
2 回答
0
您可以Bitmap
使用您的图像创建一个,然后使用该作为源应用Bitmap.createBitmap()方法。Bitmap
该方法使用源创建一个新Bitmap
的,它由给定的x
and偏移y
并且具有指定的width
and height
。希望这可以帮助。
于 2012-12-20T10:04:16.240 回答
0
使用 android.Graphics.Bitmap 和 BitmapFactory 类
打开你的图像-> 静态位图 decodeFile(String pathName)
提取子集 -> 静态位图 createBitmap(Bitmap source, int x, int y, int width, int height)
然后,您应该将子集添加到 textview 以显示它。
于 2012-12-20T10:09:26.997 回答