Hi there,
I want to place an eps graphic I created in Inkscape in a plot. The final
image is supposed to be a vector eps as well. I looked up the forum but just
found the option with the Image (PIL) library which obviously rasterizes my
vector image. And I use the Tex option so I cannot just save
Thanks all for the fast reply.
The tip with PyX is working fine!
So its very easy to combine different eps files!
If someone is interested, try something like:
from pyx import *
c = canvas.canvas()
c.insert(epsfile.epsfile(0, 0, "1.eps"))
c.insert(epsfile.epsfile(0.5,0.2,"2.eps",scale=0.5))
c.