From: John H. <jdh...@ac...> - 2005-11-18 03:19:42
|
>>>>> "Christian" == Christian Kristukat <ck...@ho...> writes: Christian> Hi, I'm trying to create an eps file which does not Christian> have a figure frame. I used figurePatch.fill = False to Christian> prevent filling but there's still a white frame drawn Christian> around the figure which is visible when putting it on a Christian> coloured background. Christian> figurePatch.set_lw(0.0) didn't help neither. Christian> figure(frameon=False) seems to have no effect. The standard trick is to set the figure facecolor and edgecolor to be the same. For whatever reason, a linewidth of 0 is not handled consistently across ps drivers. setp(figurePatch, facecolor=somecolor, edgecolor=somecolor, linewidth=0) should work. JDH Christian> Thank you in advance, Christian Christian> ------------------------------------------------------- Christian> This SF.Net email is sponsored by the JBoss Inc. Get Christian> Certified Today Register for a JBoss Training Course. Christian> Free Certification Exam for All Training Attendees Christian> Through End of 2005. For more info visit: Christian> http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click Christian> _______________________________________________ Christian> Matplotlib-users mailing list Christian> Mat...@li... Christian> https://lists.sourceforge.net/lists/listinfo/matplotlib-users |