Imageloader.save 到 ByteArrayOutputStream 的速度非常慢
有没有办法加速 SWT 的 imageLoader.save() 方法?我必须将原始图像数据压缩为 JPEG。压缩 1680 x 1050 像素大图像需要 130 - 250 毫秒。
我只是对 imageLoader.save(bos, SWT.IMAGE_JPEG);
进行基准测试。
- 我错过了什么吗?
- 是否有另一种更快的方法来压缩大字节数组/图像?
任何帮助将不胜感激
Is there anyway to speed up SWT's imageLoader.save()
-method? I have to compress raw imagedata into JPEG. It takes 130 - 250 ms to compress a 1680 x 1050 pixel large image.
I'm only benchmarking imageLoader.save(bos, SWT.IMAGE_JPEG);
.
- Am i missing something?
- Is there another, faster way to compress large byte-Arrays / Images?
Any help would be appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否使用默认构造函数初始化 ByteArrayOutputStream?内部缓冲区的默认大小仅为 1024 字节,因此每次超过其大小时,对象都会不断添加新缓冲区。您应该能够提出图像大小的一些基本上限,并将 BAOS 初始化为该上限。这可能会减少您所经历的一些等待时间。
Are you initializing the ByteArrayOutputStream with the default constructor? The default size for the internal buffer is only 1024 bytes, so the object would be constantly adding new buffers each time you exceed its size. You should be able to come up with some basic upper limit on the image size and initialize the BAOS to that. This might reduce some of the wait time you are experiencing.