如何在Android中保存绘图画布?

问题描述 投票:5回答:4

我正在使用开发人员站点的此API演示,THIS DEMO.

但是我不知道如何将图像保存到我的类人机器人设备中。请任何人提供代码以将绘制的图像保存到Android设备。

谢谢。

android android-layout android-emulator android-widget android-canvas
4个回答
12
投票

尝试此代码

View content = your_view;
content.setDrawingCacheEnabled(true);
content.setDrawingCacheQuality(View.DRAWING_CACHE_QUALITY_HIGH);
Bitmap bitmap = content.getDrawingCache();
String path = Environment.getExternalStorageDirectory().getAbsolutePath();
File file = new File(path+"/image.png");
FileOutputStream ostream;
try {
    file.createNewFile();
    ostream = new FileOutputStream(file);
    bitmap.compress(CompressFormat.PNG, 100, ostream);
    ostream.flush();
    ostream.close();
    Toast.makeText(getApplicationContext(), "image saved", 5000).show();
} catch (Exception e) {
    e.printStackTrace();
    Toast.makeText(getApplicationContext(), "error", 5000).show();
}

1
投票
drawView.setDrawingCacheEnabled(true);
Bitmap bm = null;
drawView.destroyDrawingCache();
bm=drawView.getDrawingCache();

然后使用位图工厂将位图写入文件。


0
投票

一个选项是创建另一个画布(如下所示),然后在此新画布上重复所有绘图。完成后,调用drawBitmap。

Bitmap bitmap = new Bitmap(// Set the params you like //);
Canvas canvas = new Canvas(bitmap);

// Do all your drawings here

canvas.drawBitmap(// The first picture //);

[最好是如果有一种方法可以复制现有的画布,然后您将不需要重新绘制所有内容,但是我找不到一个。


0
投票

我已经实施了以下方法并为我工作。通过从XML文件使用其ID来获取CustomView,而不是通过实例化Customview。

View v = findViewById(R.id.custom_view);
//don't get customview by this way, View v = new CustomView(this);
int canvasWidth = v.getWidth();
int canvasHeight = v.getHeight();
Bitmap bitmap = Bitmap.createBitmap(canvasWidth, canvasHeight, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
v.draw(canvas);
ImageView imageView = findViewById(R.id.image_view);
imageView.setImageBitmap(bitmap);

所有代码应在saveButton单击侦听器内。

© www.soinside.com 2019 - 2024. All rights reserved.