From: Samir P. <sp...@la...> - 2003-10-24 01:13:03
|
First of all, one of the easiest graph package yet fill with tons of capability and future potential. Now my issue: I am trying to save an image without showing it. Here is small program ************************************************************** from matplotlib.matlab import * plot([1,2,3]) savefig('test.png') #show() *************************************************************** This does not create test.png file, but if I uncomment last line, it create test.png file. How can I create a test.png file without showing it? |