我可以在 IOS 中使用 CIImageAccumulator 进行滑动过渡吗?
我有两张图片,一张在另一张上面。如果我向上/向下滚动 iPad,顶部的图像应该会消失或出现。效果应该像滑动过渡效果。
为此,如果我在设备滚动的每个角度都重新绘制顶部图像,应用程序会变慢并且过渡效果不会流畅播放。
在核心图像编程指南中,我看到了成像动态系统的主题。
对我的情况有用吗?
I have 2 images one is on top of another. the image on the top should disappear or appear if I roll iPad up/down. The effect should be like Swipe Transition effect.
To do this, if I redraw the top image every angle that the device is rolled, application is slow down and transition effect is not playing smoothly.
In the Core Image Programming Guide, I saw a topic for Imaging Dynamical Systems.
Is it useful for my situation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,
CIImageAccumulator
在 iOS 5 SDK 中不可用(至少在 5.1 中不可用)。您可以创建自己的 CIFilter 或使用 opengl 着色器来使其更快。
另外,我认为你不需要在每个角度重新绘制图像,人们几乎不会注意到它,你可以根据你的需要每 5 度甚至 10 度绘制一次。
Unfortunately
CIImageAccumulator
is not available in iOS 5 SDK (at least not in 5.1).You can create your own CIFilter or use opengl shaders to make it faster.
Also, I think you don't need is to re-draw the image at every angle, people will barely notice it, you could draw every 5 or even 10 degrees according to your needs.