将 Photoshop (CS5) 选择转换为多边形坐标

发布于 2024-12-25 08:39:35 字数 201 浏览 1 评论 0原文

我试图找到我在 Photoshop CS5 当前项目中使用的自定义 Google 地图标记 PNG 的多边形坐标。我已经做出了选择,并且希望可以将选择导出到坐标集中,如下所示:(x,y,x,y,x,y)。这是一个插图:

在此处输入图像描述

有什么想法吗?

I am trying to find the polygon coordinates of a custom Google Maps marker PNG I am using in a current project with Photoshop CS5. I have made the selection, and am hoping that selection can be exported into a coordinate set like so: (x,y,x,y,x,y). Here's an illustration:

enter image description here

Any ideas?

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

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

发布评论

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

评论(1

雨夜星沙 2025-01-01 08:39:35

我认为找到标记坐标的更好方法是使用像 Adob​​e Illustrator 这样的矢量图形软件。您可以将此地图标记创建为矢量并将其另存为 SVG(就像我在 20 秒内完成的那样)。

您可以在此处下载:http://www.mediafire.com/download/2y78sgb8vwdhbfd/ google-marker.svg

通过在 Illustrator 中保存 SVG 图形,您将看到一个“显示 SVG 代码”按钮。当您单击它时,您会在底部找到以下代码:

...
<rect fill="none" width="127" height="153"/>
<path fill="#ED1C24" d="M118,58.25c0,29.961-54.25,81.25-54.25,81.25S9.5,88.211,9.5,58.25S33.789,4,63.75,4S118,28.289,118,58.25z"
...

正如您所看到的,路径的每个点都有图形的宽度/高度和坐标。

希望这对您有帮助:)

I think the better way to find coordinated of the marker is to use vector graphics soft like Adobe Illustrator. You can create this map marker as vector and save it as SVG (as I did it in 20 sec).

You can download here: http://www.mediafire.com/download/2y78sgb8vwdhbfd/google-marker.svg

By saving SVG graphics in Illustrator you will see a button "Show SVG code". When you click it you will find the following code on the bottom:

...
<rect fill="none" width="127" height="153"/>
<path fill="#ED1C24" d="M118,58.25c0,29.961-54.25,81.25-54.25,81.25S9.5,88.211,9.5,58.25S33.789,4,63.75,4S118,28.289,118,58.25z"
...

As you can see there is a width/height of the graphics and coordinates for every dot of the path.

Hope this helps you :)

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