我可以在 IOS 中使用 CIImageAccumulator 进行滑动过渡吗?

发布于 2024-12-22 04:17:31 字数 172 浏览 2 评论 0原文

我有两张图片,一张在另一张上面。如果我向上/向下滚动 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 技术交流群。

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

发布评论

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

评论(1

半寸时光 2024-12-29 04:17:31

不幸的是,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.

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