Skip to content
Snippets Groups Projects
Commit 82e79875 authored by Roger Wolf's avatar Roger Wolf
Browse files

updating tools for figure conversion

parent 7f4f5e3f
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/python3
from sys import argv
from os import system
if len(argv)<2:
print("usage:\npython3 update_figures.py NAME")
else:
system("pdftoppm {fig}.pdf {fig} -png -cropbox".format(fig=argv[1]))
system("mv {fig}-1.png {fig}.png".format(fig=argv[1]))
system("rm {fig}.pdf".format(fig=argv[1]))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment