Imageloader.save 到 ByteArrayOutputStream 的速度非常慢

发布于 2024-10-15 22:15:47 字数 230 浏览 6 评论 0原文

有没有办法加速 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

彡翼 2024-10-22 22:15:47

您是否使用默认构造函数初始化 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文