android 如何在 jpeg 上创建鱼眼效果
我想在 android 中扭曲 jpeg 图像。失真是鱼眼效果。是否有任何库可以导入到 android 中,我可以使用它来实现这种效果。
谢谢垫子。
I'm wanting to distort a jpeg image in android. The distortion is a fisheye effect. Are there any libraries i can import into android that i can use to achieve this effect.
thanks mat.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许canvas.drawBitmapMesh(...) 可以做到。在 com.example.android.apis.graphics / BitmapMesh.java 下的 ApiDemos 中有一个示例,
在 Exclipse 中创建一个新的 Android 项目并选择“从现有示例创建项目”。选择目标 Android 版本,然后选择 ApiDemos。
运行应用程序并在 Graphics/BitmapMesh 中查看此方法的效果
Perhaps canvas.drawBitmapMesh(...) could do it. There is an example in ApiDemos under com.example.android.apis.graphics / BitmapMesh.java
In your Exclipse create a new Android project and select "Create project from existing sample". Choose target android version and then ApiDemos.
Run the application and see an effect of this method in Graphics/BitmapMesh