I'm working on a web project that involves a dynamically generated map of the US coloring different states based on a set of data.

This SVG file gives me a good blank map of the US and is very easy to change the color of each state. The difficulty is that IE browsers don't support SVG so in order for me to use the handy syntax the svg offers, I'll need to convert it to a JPG.

Ideally, I'd like to do this with only the GD2 library but could also use ImageMagick. I have absolutely no clue how to do this.

Any solution that would allow me to dynamically change the colors of states on a map of the US will be considered. The key is that it is easy to change the colors on the fly and that it is cross browser. PHP/Apache solutions only, please.

Thanks!

link|improve this question

29% accept rate
are there any classes designed to port SVG over to VML? that way you could still have a 'HTML5'-type solution – Patrick Jan 26 '11 at 19:54
take a look at my answer. exactly what you need – James Eggers Jan 26 '11 at 20:48
feedback

7 Answers

up vote 12 down vote accepted

That's funny you asked this, I just did this recently for my work's site and I was thinking I should write a tutorial... Here is how to do it with ImageMagick:

$usmap = '/path/to/blank/us-map.svg';
$im = new Imagick();
$svgin = file_get_contents($usmap);

/*loop to color each state as needed, something like 
1)explode $svgin
2)foreach($array as $state){preg_replace blank color->state color }
3)implode to $svgout*/

$im->readImageBlob($svgout);

/*png settings*/
$im->setImageFormat("png24");
$im->resizeImage(720, 445, imagick::FILTER_LANCZOS, 1);  /*Optional, if you need to resize*/

/*jpeg*/
$im->setImageFormat("jpeg");
$im->adaptiveResizeImage(720, 445); /*Optional, if you need to resize*/

$im->writeImage('/path/to/colored/us-map.png');/*(or .jpg)*/
$im->clear();
$im->destroy();

the steps 1-3 vary depending on the svg and how the id & color values are stored. If you dont want to store a file on the server, you can output the image as base 64 like

<?php echo '<img src="data:image/jpg;base64,' . base64_encode($im) . '"  />';?>

(before you use clear/destroy) but ie has issues with PNG as base64 so you'd probably have to output base64 as jpeg

you can see an example here:

Start: http://upload.wikimedia.org/wikipedia/commons/3/32/Blank_US_Map.svg

Finish: http://www.foamtecintlwcc.com/contact/cs-north-america.html (upper map)

link|improve this answer
   
Thanks for the very exact and useful tutorial on how to do this. I'll certainly use your solution as a backup but am eager to try and just get svg compatibility across all major browsers. – Michael Berkompas Jan 26 '11 at 20:29
SVG is not supported in ie8 or lower without requiring the user to install an svg viewer plugin - from SVG Wikipedia page: "All major modern web browsers, support and render SVG markup directly with the very notable exception of Microsoft Internet Explorer (IE)[3] The Internet Explorer 9 beta supports the basic SVG feature set.[4] Currently, support for browsers running under Android is also limited." – WebChemist Jan 26 '11 at 20:32
Yes, but svgweb seems to iron out all the incompatibilities using a little bit of js and flash. That's the solution I went with. – Michael Berkompas Jan 26 '11 at 20:58
feedback

You mention that you are doing this because IE doesn't support SVG.

The good news is that IE does support vector graphics. Okay, so it's in the form of a language called VML which only IE supports, rather than SVG, but it is there, and you can use it.

Google Maps, among others, will detect the browser capabilities to determine whether to serve SVG or VML.

Then there's the Raphael library, which is a Javascript browswer-based graphics library, which supports either SVG or VML, again depending on the browser.

Another one which may help: SVGWeb.

All of which means that you can support your IE users without having to resort to bitmap graphics.

See also the top answer to this question, for example: XSL Transform SVG to VML

Hope that helps.

link|improve this answer
+1 for mentioning raphael, which is definitely a good solution and worth investigating for its excellent implementation of cross browser vector graphics. – danp Jan 26 '11 at 20:49
feedback

Another very fast & accurate option is the headless browser phantomjs (webkit)

http://www.phantomjs.org/

link|improve this answer
feedback

you could use canvg js library to convert the SVG into PNG, more info here http://paksula.users.cs.helsinki.fi/svg_open_2010/demo.xhtml compatible with all major browsers!

I'm using it in my project and actually converts the SVG into PNG (with the help of PHP to save the file of course)

link|improve this answer
feedback

This is v. easy, have been doing work on this for the past few weeks.

You need the Batik SVG Toolkit. Download, and place the files in the same directory as the SVG you want to convert to a JPEG, also make sure you unzip it first.

Open the terminal, and run this command:

java -jar batik-rasterizer.jar -m image/jpeg -q 0.8 NAME_OF_SVG_FILE.svg

That should output a JPEG of the SVG file. Really easy. You can even just place it in a loop and convert loads of SVGs,

import os

svgs = ('test1.svg', 'test2.svg', 'etc.svg') 
for svg in svgs:
    os.system('java -jar batik-rasterizer.jar -m image/jpeg -q 0.8 '+str(svg)+'.svg')

Hope this helps!

link|improve this answer
feedback

I do not know of a standalone PHP / Apache solution, as this would require a PHP library that can read and render SVG images. I'm not sure such a library exists - I don't know any.

ImageMagick is able to rasterize SVG files, either through the command line or the PHP binding, IMagick, but seems to have a number of quirks and external dependencies as shown e.g. in this forum thread. I think it's still the most promising way to go, it's the first thing I would look into if I were you.

link|improve this answer
feedback

WebChemist had a good ImageMagick solution to my question. However, I went with SVGWeb instead and that has been a good solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.