快速解码 JPEG 图像的方法
我需要解码(解压为位图)非常小的(大约 1200 * 1200)JPEG。问题是我需要尽快完成。我尝试过 libjpeg,但速度很慢。我也尝试过 BitmapFactory.decodeByteArray - 它有点快,但仍然不够快。还有什么其他选择? 本机 (C++) 库是首选。
PS 我的 JPEG 是直接在内存中创建的。
PPS 我想知道为什么 libjpeg 比 BitmapFactory.decodeByteArray 慢。
I need to decode (unpack into bitmap) pretty small (about 1200 * 1200) JPEG. The problem is I need to do it quickly. I have tried libjpeg, and it's quite slow. I have also tried BitmapFactory.decodeByteArray - it's a bit faster, but still not fast enough. What are another options?
A native (C++) library is much preferred.
P.S. My JPEGs are created directly in memory.
P.P.S. I wonder how come libjpeg is slower than BitmapFactory.decodeByteArray.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 Libjpeg Turbo:http://libjpeg-turbo.virtualgl.org/
Try Libjpeg Turbo: http://libjpeg-turbo.virtualgl.org/