gpt4 book ai didi

Android 相机 - 如何从字节数组中获取特定的 "rectangle"?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:01:36 26 4
gpt4 key购买 nike

我创建了一个拍摄和保存照片的应用程序。我在该预览之上有一个预览和一个叠加层。overlay 定义了一个正方形(正方形周围的区域显示预览有点暗),正如您在图像中看到的:

example

我需要做的是提取正方形所在的图像部分。正方形定义如下:

    Rect frame = new Rect(350,50,450,150);

我该怎么做?我有可以保存的字节数组(byte[] 数据),但我想更改应用程序以便只保存正方形区域。

编辑:我尝试了以下方法:

int[] pixels = new int[100000];
ByteArrayOutputStream bos = new ByteArrayOutputStream();
Bitmap bitmap = BitmapFactory.decodeByteArray(data , 0, data.length);
bitmap.getPixels(pixels, 0, 480, 350, 50, 100, 100);
bitmap = Bitmap.createBitmap(pixels, 0, 100, 100, 100, Config.ARGB_4444);
bitmap.compress(CompressFormat.JPEG, 0, bos);
byte[] square = bos.toByteArray();

然后将数组“square”写入一个新文件...问题是我得到了一张由线条组成的图片...我所做的转换有问题

最佳答案

我花了一些时间才弄清楚代码应该是这样的:

int[] pixels = new int[100*100];//the size of the array is the dimensions of the sub-photo
ByteArrayOutputStream bos = new ByteArrayOutputStream();
Bitmap bitmap = BitmapFactory.decodeByteArray(data , 0, data.length);
bitmap.getPixels(pixels, 0, 100, 350, 50, 100, 100);//the stride value is (in my case) the width value
bitmap = Bitmap.createBitmap(pixels, 0, 100, 100, 100, Config.ARGB_8888);//ARGB_8888 is a good quality configuration
bitmap.compress(CompressFormat.JPEG, 100, bos);//100 is the best quality possibe
byte[] square = bos.toByteArray();

关于Android 相机 - 如何从字节数组中获取特定的 "rectangle"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9656350/

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