projects
/
erdiag.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Allow PNG file type, drop caching support
[erdiag.git]
/
scripts
/
getGraph_svg.php
1
<?
php
2
header
(
'Content-Type: image/svg+xml'
);
3
$dotInput
=
$_GET
[
"dot"
];
4
passthru
(
"printf '
$dotInput'
| dot -Tsvg -Nfontname=Roboto -Nfontsize=14 -Efontname=Roboto -Efontsize=14"
);