Re: save 3d-graphics as tiff
- To: mathgroup at smc.vnet.net
- Subject: [mg15405] Re: save 3d-graphics as tiff
- From: Hans Staugaard Nielsen <hsn at imf.au.dk>
- Date: Wed, 13 Jan 1999 20:57:19 -0500
- Organization: Department of Mathematical Sciences, University of Aarhus
- References: <77f1bb$m39@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
wgrebe wrote: > > Hello, > > I try to save a ListPlot3D as TIFF or GIF but it doesn't work. I have > the following code in a package: > > 3d=ListPlot3D[spec3D,Mesh->False,ColorFunction->Hue]; > SetDirectory["C:\\temp"]; > Display["picture.tif",3d,"TIFF"]; > > (or another format e.g. GIF) > > The picture is drawn but then I get the message: > > Display::type: > 3d is not a graphics, notebook, cell, or box expression. > > How can I convert the picture in my package, so that I can save it as > TIFF? > > Thank you > > Witold > > wgrebe at cityweb.de 3d is not a proper name for a variable, it means Times[3,d], call it something else and it should work. Hans