如何将 JTS-Geometry 转换为 AWT-Shape?
是否可以将 com.vividsolutions.jts.geom.Geometry
(或其子类)转换为实现 java.awt.Shape
的类? 我可以使用哪个库或方法来实现该目标?
Is it possible to convert a com.vividsolutions.jts.geom.Geometry
(or a subclass of it) into a class that implements java.awt.Shape
? Which library or method can I use to achieve that goal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
另请参阅提供的 ShapeWriter由 JTS 图书馆提供。 我使用以下代码片段将 jts 几何对象转换为 awt 形状。
编辑:结果看起来像这个图像
Also have a look at ShapeWriter provided by the JTS library. I used the following code snipped to convert jts geometry objects into an awt shape.
Edit: The result looks like this image
根据:
http://lists.jump-project .org/pipermail/jts-devel/2007-May/001954.html
有一个类:
哪个可以做到这一点?
According to:
http://lists.jump-project.org/pipermail/jts-devel/2007-May/001954.html
There's a class:
which can do it?