From 152b943ea1a1dbb87d0e83eec6482e481b307a31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kom=D1=8Fpa?= Date: Fri, 16 Jul 2010 18:49:47 +0300 Subject: [PATCH] Added SVG output --- src/generate_image.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/generate_image.py b/src/generate_image.py index 94e9376..45dc9d9 100644 --- a/src/generate_image.py +++ b/src/generate_image.py @@ -24,9 +24,14 @@ from mapcss import MapCSS from render import RasterTile +svg = False + +if svg: + import cairo + style = MapCSS(1, 19) #zoom levels -style.parse(open("styles/openstreetinfo.mapcss","r").read()) +style.parse(open("styles/gisrussa.mapcss","r").read()) bbox = (27.115768874532,53.740327031764,28.028320754378,54.067187302158) @@ -38,6 +43,13 @@ db = DataBackend() #style = Styling() res = RasterTile(w, h, z, db) +if svg: + file = open("test.svg", "wb") + res.surface = cairo.SVGSurface(file.name, w,h) res.update_surface(bbox, z, style) -res.surface.write_to_png("test.png") \ No newline at end of file + +if not svg: + res.surface.write_to_png("test.png") +else: + res.surface.finish() \ No newline at end of file