gpt4 book ai didi

android - 如何使用 Canvas 创建一个巨大的白色位图?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:41:22 29 4
gpt4 key购买 nike

我正在尝试弄清楚如何使用 Canvas 将一个小图形(它是什么并不重要)绘制到一个大的白色表面上。问题是,如果我从一个大的空位图开始,当我使用 ARGB_8888 制作它的可变副本时,Android 会立即耗尽内存。我很好奇我是否遗漏了什么,或者由于 Android 中的内存限制实际上不可能将小图形合成到大的白色表面上并将其保存为 PNG 或 JPG。

最佳答案

当然,当您想要创建巨大的位图时,您会受到内存的限制,但是您有足够的内存来创建相当大的位图。例如,一个 1024*1024 ARGB_8888 位图将需要大约 4 MB 的内存,如果您的应用程序通常内存不足,这不是问题。 Android 应用程序的正常堆大小通常在 16-32 MB 之间,具体取决于 Android 版本,只是为了让您了解您必须使用的内容。

你说你制作了一个大位图的副本,这可能是你的主要问题。无需复制大位图,您只需要一个。下面是一个示例项目,它创建一个大的 (1024*1024) 白色位图并在您的应用中在其中间绘制一个 View ,然后将结果写入 PNG:

package com.example.android;

import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.os.Bundle;
import android.os.Environment;
import android.util.Log;
import android.view.View;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;

public class WhitePngActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
findViewById(R.id.draw_to_bitmap).setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Bitmap largeWhiteBitmap = Bitmap.createBitmap(1024, 1024, Bitmap.Config.ARGB_8888);

// Make a canvas with which we can draw to the bitmap
Canvas canvas = new Canvas(largeWhiteBitmap);

// Fill with white
canvas.drawColor(0xffffffff);

// Draw the view to the middle of the big white bitmap. In this
// case, it will be the button, but you can draw any View in
// your view hierarchy to the bitmap like this. And of course
// you can position the View anywhere you want
canvas.save();
canvas.translate(
largeWhiteBitmap.getWidth() / 2 - view.getWidth() / 2,
largeWhiteBitmap.getHeight() / 2 - view.getHeight() / 2);
view.draw(canvas);
canvas.restore();

// Write the file (don't forget android.permission.WRITE_EXTERNAL_STORAGE)
File pictureDir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
File pngFile = new File(pictureDir, "big-white-image-with-view.png");
try {
largeWhiteBitmap.compress(Bitmap.CompressFormat.PNG, 0, new FileOutputStream(pngFile));
} catch (FileNotFoundException e) {
Log.e("WhitePngActivity", "Could not write " + pngFile, e);
}

// Immediately release the bitmap memory to avoid OutOfMemory exception
largeWhiteBitmap.recycle();
}
});
}
}

连同这个主布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<Button
android:id="@+id/draw_to_bitmap"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Click to draw to bitmap" />

</LinearLayout>

你会在类似 /mnt/sdcard/Pictures/big-white-image-with-view.png 的地方得到一个位图,看起来像这样:

enter image description here

关于android - 如何使用 Canvas 创建一个巨大的白色位图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9279600/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com