gpt4 book ai didi

android - 位图到整数数组?

转载 作者:搜寻专家 更新时间:2023-11-01 09:46:35 25 4
gpt4 key购买 nike

在我的应用程序中,我有一个存储图像的数据库。我想检索图像。图像很容易在 BitMap 中检索,但问题是如何将 BitMap 图像转换为整数格式。

这是代码:

   DataBaseClass objOfDataBaseClass=new DataBaseClass(context);
Cursor mCursor=objOfDataBaseClass.showData();//here is all data taken from dataBase

if(mCursor.moveToNext()) {

byte[] mg=null;
mg = mCursor.getBlob(mCursor.getColumnIndex("image"));
Bitmap bitmap = BitmapFactory.decodeByteArray(mg, 0, mg.length);

int[] store=?//how can i bitMap store in this array.
}

最佳答案

您可以使用 Bitmap.getPixels 方法 ( documentation )

int width = bitmap.getWidth();
int height = bitmap.getHeight();
int[] store = new int[width * height];
bitmap.getPixels(store, 0, width, 0, 0, width, height);

关于android - 位图到整数数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37843442/

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