home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / scripts / image / saveimage.m < prev   
Text File  |  1996-09-28  |  3KB  |  99 lines

  1. # Copyright (C) 1995 John W. Eaton
  2. # This file is part of Octave.
  3. # Octave is free software; you can redistribute it and/or modify it
  4. # under the terms of the GNU General Public License as published by the
  5. # Free Software Foundation; either version 2, or (at your option) any
  6. # later version.
  7. # Octave is distributed in the hope that it will be useful, but WITHOUT
  8. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  10. # for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with Octave; see the file COPYING.  If not, write to the Free
  13. # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  
  15. function saveimage (filename, X, img_form, map)
  16.  
  17. # Save a matrix to disk in image format.
  18. # saveimage (filename, x) saves matrix x to file filename in octave's
  19. # image format.  The current colormap is saved in the file also.
  20. # saveimage (filename, x, "img") saves the image in the default format
  21. # and is the same as saveimage (filename, x).
  22. # saveimage (filename, x, "ppm") saves the image in ppm format instead
  23. # of the default octave image format.
  24. # saveimage (filename, x, "ps") saves the image in PostScript format
  25. # instead of the default octave image format. (Note: images saved in
  26. # PostScript format can not be read back into octave with loadimage.)
  27. # saveimage (filename, x, format, map) saves the image along with the
  28. # specified colormap in the specified format.
  29. # Note: If the colormap contains only two entries and these entries
  30. # are black and white, the bitmap ppm and PostScript formats are used.
  31. # If the image is a gray scale image (the entries within each row of
  32. # the colormap are equal) the gray scale ppm and PostScript image
  33. # formats are used, otherwise the full color formats are used.
  34. # SEE ALSO: loadimage, save, load, colormap
  35.  
  36. # Written by Tony Richardson (amr@mpl.ucsd.edu) July 1994.
  37.  
  38.   if (nargin < 2 || nargin > 4)
  39.     usage ("saveimage (filename, matrix, [format, [colormap]])");
  40.   elseif (nargin == 2)
  41.     if (! isstr (filename))
  42.       error ("file name must be a string");
  43.     endif
  44.     map = colormap;
  45.     img_form = "img";
  46.   elseif (nargin == 3)
  47.     if (! isstr (img_form))
  48.       error ("image format specification must be a string");
  49.     endif
  50.     map = colormap;
  51.   endif
  52.  
  53. # XXX FIXME XXX -- we should check the remaining args.
  54.  
  55. # XXX FIXME XXX -- we should use octave_tmp_file_name here.
  56.  
  57.   if (strcmp (img_form, "img") == 1)
  58.     oct_file = filename;
  59.   elseif (strcmp (img_form, "ppm") == 1)
  60.     oct_file = sprintf ("image.%s.img", num2str (fix (rand * 10000)));
  61.     ppm_file = filename;
  62.   elseif (strcmp (img_form, "ps") == 1)
  63.     oct_file = sprintf ("image.%s.img", num2str (fix (rand *10000)));
  64.     ps_file = filename;
  65.   endif
  66.  
  67. # Save image in octave image file format
  68.  
  69.   eval (['save -asciii ', oct_file, ' map X']);
  70.  
  71. # Convert to another format if requested.
  72.  
  73.   if (strcmp (img_form, "ppm") == 1)
  74.     octtopnm = sprintf ("octtopnm %s > %s", oct_file, filename);
  75.     rm = sprintf("rm -f %s", oct_file);
  76.     shell_cmd (octtopnm);
  77.     shell_cmd (rm);
  78.   elseif (strcmp (img_form, "ps") == 1)
  79.     octtopnm = sprintf ("octtopnm %s", oct_file);
  80.     ppmtops = sprintf ("pnmtops > %s 2> /dev/null", filename);
  81.     octtops = [ octtopnm, " | ", ppmtops ];
  82.     rm = sprintf ("rm -f %s", oct_file);
  83.     shell_cmd (octtops);
  84.     shell_cmd (rm);
  85.   endif
  86.  
  87. endfunction
  88.