2847
|
1 ## Copyright (C) 1996, 1997 John W. Eaton |
2313
|
2 ## |
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
5307
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301, USA. |
1024
|
19 |
3381
|
20 ## -*- texinfo -*- |
3373
|
21 ## @deftypefn {Function File} {[@var{x}, @var{map}] =} loadimage (@var{file}) |
|
22 ## Load an image file and it's associated color map from the specified |
|
23 ## @var{file}. The image must be stored in Octave's image format. |
5642
|
24 ## @seealso{saveimage, load, save} |
3373
|
25 ## @end deftypefn |
904
|
26 |
3202
|
27 ## Author: Tony Richardson <arichard@stark.cc.oh.us> |
2312
|
28 ## Created: July 1994 |
|
29 ## Adapted-By: jwe |
559
|
30 |
2650
|
31 function [img_retval, map_retval] = loadimage (filename) |
1024
|
32 |
|
33 if (nargin != 1) |
6046
|
34 print_usage (); |
5443
|
35 elseif (! ischar (filename)) |
1024
|
36 error ("loadimage: expecting filename as a string"); |
686
|
37 endif |
|
38 |
5921
|
39 file = file_in_path (IMAGE_PATH, filename); |
686
|
40 |
|
41 if (isempty (file)) |
|
42 error ("loadimage: unable to find image file"); |
|
43 endif |
|
44 |
2650
|
45 ## The file is assumed to have variables img and map, or X and map. |
2325
|
46 |
3400
|
47 eval (sprintf ("load %s", file)); |
559
|
48 |
2650
|
49 if (exist ("img")) |
|
50 img_retval = img; |
|
51 elseif (exist ("X")) |
|
52 img_retval = X; |
|
53 else |
|
54 error ("loadimage: invalid image file found"); |
|
55 endif |
|
56 |
|
57 if (exist ("map")) |
|
58 map_retval = map; |
|
59 else |
|
60 error ("loadimage: invalid image file found"); |
|
61 endif |
|
62 |
559
|
63 endfunction |