如何使用 SurfaceView 将画布绘图保存为图像而不是视图。
问问题
2873 次
1 回答
2
试试下面的代码可能会有所帮助
Bitmap bitmap = Bitmap.createBitmap(mSurfaceView.getWidth(), mSurfaceView.getHeight(), Bitmap.Config.ARGB_8888);
mSurfaceView.draw(new Canvas(bitmap));
try {
OutputStream out = new BufferedOutputStream(new FileOutputStream(saved.png));
bitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
} catch (IOException e) {
Log.w(TAG, e);
}
于 2012-04-10T12:21:32.953 回答