"Anthony Floyd" <[EMAIL PROTECTED]> writes: > I would like to 'watermark' a plot. That is, display an image 'under' > several lines. [...] I've tried using figure.figimage, but that only > draws the watermark 'outside' the plot area. Fair enough.
The background of the axes object is called a "frame", and you want to not draw it at all (pass frameon=False to add_axes) or make it translucent: fig=figure(...) fig.figimage(...) ax=fig.add_subplot(...) ax.get_frame().set_alpha(0.5) -- Jouni K. Seppänen http://www.iki.fi/jks ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-users