Menu

[r130]: / trunk / htdocs / screenshots / makeshots.py  Maximize  Restore  History

Download this file

24 lines (17 with data), 729 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
import sys, os
# do not remove the pngs - some are screenshots!
files = {'simple_plot.py' : 'GD',
'axes_demo.py' : 'GTK', # a color bug
'histogram_demo.py' : 'GD',
# 'mri_with_eeg.py' : 'GD', # bug in eeg offset
'barchart_demo.py' : 'GD',
'legend_demo.py' : 'GD',
'pcolor_demo.py' : 'GD',
'text_themes.py' : 'GTK', # font problem
'log_shot.py' : 'GD',
'align_text.py' : 'GTK',
'scatter_demo2.py' : 'GD', # color bug, some circles not filled
}
for fname, backend in files.items():
print 'Making screenshot', fname
os.system('python %s -d%s' % (fname, backend))
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.