Skia Decoder fails to decode remote Stream(Skia 解码器无法解码远程流)
本文介绍了Skia 解码器无法解码远程流的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试打开 JPEG 图像的远程流并将其转换为位图对象:
I am trying to open a remote Stream of a JPEG image and convert it into a Bitmap object:
BitmapFactory.decodeStream(
new URL("http://some.url.to/source/image.jpg")
.openStream());
解码器返回 null 并且在日志中我收到以下消息:
The decoder returns null and in the logs I get the following message:
DEBUG/skia(xxxx): --- decoder->decode returned false
注意:
1.内容长度非零,内容类型为image/jpeg
2. 当我在浏览器中打开网址时,我可以看到图片.
Note:
1. the content length is non-zero and content type is image/jpeg
2. When I open the URL in browser I can see the image.
我在这里缺少什么?
请帮忙.谢谢.
推荐答案
似乎流和android处理它的方式有问题;错误报告中的补丁现在解决了这个问题.
seems there was some problem with the stream and the way android handled it; the patch in this bug report solved the problem for now.
这篇关于Skia 解码器无法解码远程流的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:Skia 解码器无法解码远程流
基础教程推荐
猜你喜欢
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01