Tagged Questions
0
votes
1answer
603 views
Rough Edges Converting SVG to PNG with PHP
I'm using the following script to generate an scaled up PNG version of an SVG.
<img src="barrington.svg" width="418" height="188"/> //comparison
<?php
$im = new Imagick();
...
0
votes
1answer
1k views
Drawing multiple edges between two nodes with d3
I've been following Mike Bostock's code from this example to learn how to draw directed graphs in d3 and was wondering how I would structure the code so that I could add multiple edges between two ...