使用 JavaScript 的 PhoneGap 应用程序中类似 Instagram 的过滤器
我即将构建一个phonegap应用程序,并想要构建一个功能,有点像如何在照片上添加过滤器,就像在instagram上一样,
我试图找到它是如何完成的,但没有成功。
任何人对这项技术有任何想法,或者如果没有 Objective C 也可能吗?
安德鲁
I am about to build a phonegap application and was wanting to build a function, a little but like how you can add filters on your photos like you can On instagram
Il tried to find how it's done with no luck.
Anyone have any ideas on the technique or if it's even possible without objective c?
Andrew
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了同样的问题,最终创建了一个新的phonegap插件来完成任务!
理论上它的工作原理基本上是使用phonegap 捕获图像并将新图像的URI 传递给objective-c 进行编辑。使用 CoreImage 框架,您可以应用和编辑照片,然后将其保存回来并将新的 URL 传递回您的应用程序。
查看这篇博文和 git 项目!
希望这有帮助!
https://github.com/DrewDahlman/ImageFilter
http://www.drewdahlman.com/meusLabs/?p=138
I had the same problem wound up creating a new phonegap plugin to accomplish the task!
Basically how it works in theory is to capture the image with phonegap and pass the new image's URI to objective-c to edit. Using the CoreImage Framework you can apply and edit the photo then save it back and pass a new url back to your app.
Check out this blog post and git project!
hope this helps!
https://github.com/DrewDahlman/ImageFilter
http://www.drewdahlman.com/meusLabs/?p=138