I wish to print a schematic I have created. It resides on a 2400x2400
panel. Thus, it not only requires a few pages vertically, but also
requires a few pages horizontally. how can I make the print routine
not only go vertically until a page doens't exist, but also
horizontally?
Thanks,
clayton
Boudewijn Dijkstra - 21 Jul 2005 16:47 GMT
>I wish to print a schematic I have created. It resides on a 2400x2400
> panel. Thus, it not only requires a few pages vertically, but also
> requires a few pages horizontally. how can I make the print routine
> not only go vertically until a page doens't exist, but also
> horizontally?
I guess it would be best to split up the image into smaller subimages for each
page.
ChooChooOnMyHead - 21 Jul 2005 17:50 GMT
if i'm painting said image using java's painting functions, how would
i break it into smaller images? it's not an image object it's just
java2d lines and shapes drawn and then printed via the paintComponent
method
Knute Johnson - 21 Jul 2005 22:06 GMT
> if i'm painting said image using java's painting functions, how would
> i break it into smaller images? it's not an image object it's just
> java2d lines and shapes drawn and then printed via the paintComponent
> method
CC:
Look at Graphics2D.translate().
knute...
ChooChooOnMyHead - 22 Jul 2005 15:22 GMT
Thank you, I'll see how that plays out.