如何在CIImage上画直线/圆弧?
我有一个 CIImage,我试图在鼠标拖动时沿着路径画线。我可以这样做吗?
我正在为 mac 构建一个应用程序,并且我是 Core Image 的新手。
I have a CIImage and I am trying to draw lines on mouse drag along the path. Can I do that ?
I am building an app for mac, and I am new to Core Image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要首先创建一个图形上下文,然后从中检索图像。这是一个可以回答您的问题的链接。它适用于 iPhone,但 Mac 和 iPhone 非常相似。
如何从当前图形上下文创建 UIImage?< /a>
You need create a graphics context first and then retrieve your image from that. Here's a link that will answer your question. It's for the iPhone but Mac and iPhone are very similar.
How to create a UIImage from the current graphics context?