Skip to content

Instantly share code, notes, and snippets.

@asper
Created October 29, 2016 00:44
Show Gist options
  • Save asper/9b060b12005e0652f96658a1f06d53d3 to your computer and use it in GitHub Desktop.
Save asper/9b060b12005e0652f96658a1f06d53d3 to your computer and use it in GitHub Desktop.
<?php
set_time_limit(0);
foreach (glob('./svg/*.svg') as $filename) {
$out = str_replace('svg', 'emf', $filename);
exec('inkscape --file '.$filename.' --export-emf '.$out);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment