MathGroup Archive 1999

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: save 3d-graphics as tiff

  • To: mathgroup at smc.vnet.net
  • Subject: [mg15416] Re: save 3d-graphics as tiff
  • From: dreissBLOOP at bloop.earthlink.net (David Reiss)
  • Date: Wed, 13 Jan 1999 20:57:29 -0500
  • Organization: EarthLink Network, Inc.
  • References: <77f1bb$m39@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

In article <77f1bb$m39 at smc.vnet.net>, "wgrebe" <wgrebe at cityweb.de>
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

I assume that spec3D is an array of data.   3d is parsed by Mathematica
as 3*d.  The lesson here is that you don't want to name a variable
starting with a number. Try a different name such as a3dplot for
example...

Cheers,

David

-- 
David Reiss
dreissBLOOP at bloop.earthlink.net
To send personal email, remove the words  "bloop" and "BLOOP" from the
email address


  • Prev by Date: Re: save 3d-graphics as tiff
  • Next by Date: Re: save 3d-graphics as tiff
  • Previous by thread: Re: save 3d-graphics as tiff
  • Next by thread: Re: save 3d-graphics as tiff