- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 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 框架中,带有 J
和 TJ
的类型是原生 Android Java 类型的接口(interface)/类包装器。所以您需要阅读 Google 的文档,在本例中为 Bitmap和 BitmapFactory类引用,然后根据需要调整属性和方法调用以适应 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/
我正在使用 Delphi 10.2 Tokyo 作为开发工具开发 Android 应用程序。为了打印到 Zebra 打印机,我需要将图像作为 JBitmap 发送。我找不到关于如何加载该 JBitma
使用 Delphi Tokyo 10.2.3 并针对 Android,我正在创建多个线程来下载 PNG 图像并在后台对其进行解码。 由于这里解释的稳定性原因,使用 TBitmap 不是一个选项: Ge
我是一名优秀的程序员,十分优秀!