[EMAIL PROTECTED] wrote:
> I installed gsview and gscript and tried it.   The good news is that when I 
> print from inside gsview, the error page is gone.  The bad news is that the 
> oritentation is wrong.  My plot is designed for landscape.  From word, I set 
> the page setup to landscape, import the picture, and print.  But with gsview, 
> it imports my plot 90 degree wrong.   Changing orientation flips the whole 
> page 90 degree but the plot gets rotated as well and so it still prints wrong.
> 
> I guess I have no choice but to regress step by step and see which MPL 
> feature aggrevated this condition.
> 

Did you try saving the figure using the orientation kwarg?  This is 
intended for postscript output.

e.g.

from pylab import figure, show, close
fig = figure()
ax = fig.add_subplot(1,1,1)
ax.plot([0,1], [0,1])
fig.savefig('myplot.ps', orientation='landscape')
close(fig)

Eric

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to