如何控制mapnik PointSymbolizer符号对齐?

发布于 2024-09-08 14:52:31 字数 317 浏览 4 评论 0原文

我正在使用 mapnik 绘制带有位图图像的图层。它工作得很好,但看起来图像的右下角是我的坐标的 x, y。如何对齐图像以使图像的中心位于我的坐标上?

point_looks = mapnik.PointSymbolizer(output_filename_abs, 'png', 32, 32) 
layout_rule = mapnik.Rule()
layout_rule.symbols.append(point_looks)
point_style = mapnik.Style()
point_style.rules.append(layout_rule)

I'm using mapnik to draw a layer with bitmap images. It works good, but it looks like the bottom-right of the image is the x, y of my coordinates. How to align the image so that the center of the image is placed on my coordinates?

point_looks = mapnik.PointSymbolizer(output_filename_abs, 'png', 32, 32) 
layout_rule = mapnik.Rule()
layout_rule.symbols.append(point_looks)
point_style = mapnik.Style()
point_style.rules.append(layout_rule)

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

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

发布评论

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

评论(2

娇柔作态 2024-09-15 14:52:31

我真是太愚蠢了...我使用的图像是 16x16 像素。因此将大小设置为 32x32 会将右下角作为中心。

Very stupid of me... the images I used are 16x16 pixels. Thus setting the size to 32x32 will put the lower-right corner as the center.

摘星┃星的人 2024-09-15 14:52:31

您可以使用转换参数。

point_looks.transform="translate(-16,-16)"

看看 SVG 转换

you can use transform parameter.

point_looks.transform="translate(-16,-16)"

take a look at SVG transform

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