gpt4 book ai didi

android - 如何使用 JBitmap/JBitmapFactory 解码 TMemoryStream 中的 PNG 图像

转载 作者:行者123 更新时间:2023-11-29 15:34:48 24 4
gpt4 key购买 nike

使用 Delphi Tokyo 10.2.3 并针对 Android,我正在创建多个线程来下载 PNG 图像并在后台对其进行解码。

由于这里解释的稳定性原因,使用 TBitmap 不是一个选项: Getting multi-threaded safe RGBA values from a decoded PNG image running Android

我相信 PNG 文件可以使用 JBitmap/JBitmapFactory 类进行解码,但我找不到任何关于如何执行此操作的文档。

我当前的代码将 PNG 图像下载到 TMemoryStream 中。我希望找到将采用 TMemoryStream 并输出 JBitmap 的示例代码。

像这样:

function DecodeBitmapFromStream(mStream : TMemoryStream) : JBitmap;

最佳答案

I believe PNG files can be decoded using the JBitmap/JBitmapFactory classes, but I can't find any documentation on how to do this.

在 Embarcadero 的 JNIBridge 框架中,带有 JTJ 的类型是原生 Android Java 类型的接口(interface)/类包装器。所以您需要阅读 Google 的文档,在本例中为 BitmapBitmapFactory类引用,然后根据需要调整属性和方法调用以适应 Embarcadero 的语法。

My current code downloads the PNG images into a TMemoryStream. I am hoping to find sample code that will take in a TMemoryStream and output a JBitmap.

尝试这样的事情:

function DecodeBitmapFromStream(mStream : TMemoryStream) : JBitmap;
var
data: TJavaArray<Byte>;
size: Integer;
begin
size := mStream.Size;
data := TJavaArray<Byte>.Create(size);
Move(mStream.Memory^, data.Data^, size);
Result := TJBitmapFactory.JavaClass.decodeByteArray(data, 0, size, nil);
end;

关于android - 如何使用 JBitmap/JBitmapFactory 解码 TMemoryStream 中的 PNG 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53198751/

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