1

如何显示在特定 x,y 处偏移的非常大图像的一部分

4

2 回答 2

0

您可以Bitmap使用您的图像创建一个,然后使用该作为源应用Bitmap.createBitmap()方法。Bitmap该方法使用源创建一个新Bitmap的,它由给定的xand偏移y并且具有指定的widthand 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 回答