views:

25

answers:

2

I am creating some graphs using matplotlib, and I want to be able to write a copyright message and my website address at the bottom of the image.

Something like:

© ACME Corp www.example.com

Does anyone know how I may do this?

A: 

Not sure if this answer your question but you can put any text in a figure with

 text(x, y, s, fontdict=None, **kwargs)

some examples of fonts are in here

joaquin
+1  A: 

To write text in the figure outside the axis area, use figtext.

Jouni K. Seppänen