From 073c36b7373e4f4ce68c99621afb78544e3f0bb7 Mon Sep 17 00:00:00 2001 From: MaksVasilev Date: Tue, 3 Dec 2013 21:15:26 +0400 Subject: [PATCH] Font size from int to float. See https://github.com/mapnik/mapnik/wiki/TextSymbolizer size: double --- src/libkomapnik.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libkomapnik.py b/src/libkomapnik.py index 9aa8fd2..617cb14 100644 --- a/src/libkomapnik.py +++ b/src/libkomapnik.py @@ -138,7 +138,7 @@ def xml_textsymbolizer( pos = pos.replace("exact", "X").replace("any", "S, E, X, N, W, NE, SE, NW, SW").split(",") pos.extend([str(int(float(x) * text_scale)) for x in size.split(",")]) pos = ",".join(pos) - size = str(int(float(size.split(",")[0]) * text_scale)) + size = str(float(size) * float(text_scale)) placement = {"center": "interior"}.get(placement.lower(), placement) align = {"center": "middle"}.get(align.lower(), align) @@ -150,7 +150,7 @@ def xml_textsymbolizer( return """ [%s] - """ % (face, int(float(size)), color, halo_color, halo_radius, placement, dx, dy, overlap, wrap_width, distance, align, opacity, pos, transform, spacing, text) + """ % (face, size, color, halo_color, halo_radius, placement, dx, dy, overlap, wrap_width, distance, align, opacity, pos, transform, spacing, text) def xml_shieldsymbolizer(path="", width="", height="", @@ -159,7 +159,7 @@ def xml_shieldsymbolizer(path="", width="", height="", halo_color = nicecolor(halo_color) placement = {"center": "point"}.get(placement.lower(), placement) align = {"center": "middle"}.get(align.lower(), align) - size = size.split(",")[0] + size = str(float(size) * float(text_scale)) if width: width = ' width="%s" ' % width if height: @@ -167,7 +167,7 @@ def xml_shieldsymbolizer(path="", width="", height="", return """ [%s] """ % (icons_path, - path, width, height, face, int(float(size) * text_scale), color, halo_color, halo_radius, placement, offset, overlap, wrap_width, distance, align, opacity, transform, unlock_image, spacing, text) + path, width, height, face, size, color, halo_color, halo_radius, placement, offset, overlap, wrap_width, distance, align, opacity, transform, unlock_image, spacing, text) def xml_filter(string):