在java中寻找mipmap生成器
我需要从 java 中的任意图像(不同格式,不一定是平方的)生成 mip 贴图。 因为我不喜欢重新发明轮子,所以我花了一些时间寻找一个独立的 java 类,但没有任何运气。
有谁知道一个简单的课程可以解决我的问题? 应该在 Android 上运行;)。
注释:
- 我知道 OpenGL 可以创建 MipMap,但我需要在任何 OpenGL 上下文之外使用它们。
- 图像很大(16K x 8K)。
- 由于大小的原因,无法在 OpenGL 中创建并导出它。
I need to generate a mip map from an arbitrary image (different formats, not necessarily squared) in java.
Because I don't like to reinvent the wheel I spend some time looking for a stand alone java class, without any luck.
Does anyone know a simple class solving my problem?
Should run on android ;) .
notes:
- I know OpenGL can create MipMaps BUT I needed them outside of any OpenGL context.
- The image is a big one ( 16K x 8K ).
- creating it in OpenGL and exporting it issn't an option because of the size.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能将渲染工作交给服务器场/“云”吗?
仅使用 android 进行真正必要的客户端计算。现在,亚马逊为虚拟机提供了显卡。
Cant you hand the rendering off to a server farm/ "the cloud"?
Use android only for the real necessary client calculation. Amazon nowadays provides VMs with graficcards.