在 UIImage 视图中的图像上绘制折线

发布于 2024-09-24 21:11:58 字数 72 浏览 5 评论 0原文

我想在 UIImageView 中绘制折线并加载图像。

有人可以给我一些从哪里开始的建议吗?

谢谢

I want to draw polylines over and image loaded in an UIImageView.

Can someone give me some tips on where to start?

Thank you

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

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

发布评论

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

评论(1

九八野马 2024-10-01 21:11:58

要绘制多边形,您应该使用位于 UIView 子类中的 drawRect 方法。

所以有 2 个解决方案:
1°) 你继承 UIImageView 并在drawRect中绘制你的图像并绘制你的折线
2°)您有一个 UIImageView ,顶部有一个 UIView 子类,您可以在其中绘制折线

绘制折线不会成为问题(您应该在堆栈上找到答案)。
(就像这里:iPhone 上的多线

To draw polygon you should use the drawRect method located in UIView subclass.

So 2 solutions :
1°) You subclass UIImageView and in drawRect you draw your image and draw your polylines then
2°) You have an UIImageView and on the top an UIView subclass where you draw your polylines

Drawing the polylines won't be a problem (you should find an answer on stack).
(like here : polyines on iphone)

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