如何在iPhone拍摄图像时在相机中显示虹膜(有人说快门)?

发布于 2024-10-20 14:27:20 字数 121 浏览 2 评论 0原文

我已经在 iPhone 中实现了相机并拍摄图像并将其保存在相册中。 现在我想要的是,当我保存一张图像并启用按钮来拍摄第二张图像时,我希望虹膜显示在中间。这样感觉就像 iPhone 的相机功能一样。 我该怎么做请给一些建议。 谢谢

I have implemented camera in iPhone and taking images and save it in PhotoAlbum.
Now what i want is when i save one image and make button enable for taking second image i want iris to be shown in between.So that it feels excatly like Camera functionality of iPhone.
How i do that please give some suggestion.
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

余罪 2024-10-27 14:27:20

像 Stachematic 和 Zombiematic 这样的应用程序实际上可以通过使用这个私有 API 来逃脱......

CATransition *animation = [CATransition animation];
[animation setDelegate:self];
[animation setDuration:0.3];
animation.timingFunction = UIViewAnimationCurveEaseInOut;
[animation setType:@"cameraIris"];
[cameraView.layer addAnimation:animation forKey:nil];

Apps like Stachematic and Zombiematic actually got away with using this private API ...

CATransition *animation = [CATransition animation];
[animation setDelegate:self];
[animation setDuration:0.3];
animation.timingFunction = UIViewAnimationCurveEaseInOut;
[animation setType:@"cameraIris"];
[cameraView.layer addAnimation:animation forKey:nil];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文