Monotouch 在 UIImage 上画线
使用 Monotouch,如何在当前显示的 UIImage 中的图像上绘制一条简单的线条?
简单的例子当然可以。
Obj-C 的答案也可以。
Using Monotouch, how would I draw a simple line onto the image in a UIImage that is currently being display?
Simple example is of course fine.
Obj-C answer is ok too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您有一个自定义 UIImageView,其 Image 属性上设置了图像,请将此方法放入其中:
这会在图像本身上绘制一条红线。
Assuming you have a custom UIImageView with an image set on its Image property, place this method in it:
This draws a red line on the image itself.