Le Mercredi  1 Août 2007 12:37, Andre Wobst a écrit :
> Hi,
>
> you may not want to deal with clipping etc. at all. Just place your
> large canvas at different positions on several pages. It should harm
> any PostScript device/RIP ... it'll throw away all things outside of
> the printable area. Example:
>
>     from pyx import *
>
>     c = canvas.canvas()
>     c.text(0, 10, "This is huge!", [trafo.scale(50)])
>
>     d = document.document()
>     for i in range(5):
>         c2 = canvas.canvas()
>         c2.insert(c, [trafo.translate(-20*i, 0)])
>         d.append(document.page(c2, centered=0,
>                                paperformat=document.paperformat.A4))
>     d.writePSfile("banner")
>
> Best,
>
> André

To make a score a have a great number (100, ...) of 1-D arrays.
The best way for me would be a call like

c.plot(x, y, the_array)

with axes on each page (graphxy plots axes for each array - it's not
what I need).

Regards,

-- 
René B.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
PyX-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pyx-user

Reply via email to