Re: convert table into graphics object
- To: mathgroup at smc.vnet.net
- Subject: [mg56420] Re: convert table into graphics object
- From: "andre.robin3" <andre.robin3 at wanadoo.fr>
- Date: Sun, 24 Apr 2005 03:29:20 -0400 (EDT)
- References: <d4cmq5$3a5$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
one solution is : myGraph = Cell[BoxData[FrameBox[ToBoxes[TableForm[{{1, 2}, {2, 3}}]]]]] Export["c:\Table11.eps", myGraph] "juejung" <juejung at indiana.edu> a écrit dans le message news: d4cmq5$3a5$1 at smc.vnet.net... > > how can i convert the following expression into a graphics object, so that > i can export it as an eps? > is there something like a ConvertTo eps command. i know that in the menue, > if one goes to cell and then ConvertTo postscript it is possible to > convert the thing into a graph. but i have a lot of graphs and would > rather not do this by hand. > > here's a sample expression: > > myGraph = DisplayForm[FrameBox[TableForm[{{1, 2}, {2, 3}}]]] > Export["c:\Table11.eps", myGraph] > > this won't work since myGraph is not a graphics object yet. any idea? > > thanks. > > juergen >