如何控制mapnik PointSymbolizer符号对齐?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我真是太愚蠢了...我使用的图像是 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.
您可以使用转换参数。
看看 SVG 转换
you can use transform parameter.
take a look at SVG transform