view scripts/image/private/__imfinfo__.m @ 17118:c97a26408ee0

Implement PixelRegion option for imread(). * imread.m: document new option. * private/__imread__.m: parse new option and set defaults. * __magick_read__.cc (calculate region): new option to calculate the region to be read, shifts in memory required, and output image size. (read_indexed_images, read_images): implement reading of only specific regions of an image. (__magick_read__): get octave_scalar_map at start for simplicity.
author Carnë Draug <carandraug@octave.org>
date Wed, 31 Jul 2013 21:28:48 +0100
parents 3db796f89695
children 1c89599167a6
line wrap: on
line source

## Copyright (C) 2008-2012 Soren Hauberg
## Copyright (C) 2013 Carnë Draug
##
## This file is part of Octave.
##
## Octave is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or (at
## your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, see
## <http://www.gnu.org/licenses/>.

## This function does al the work of imfinfo. It exists here as private
## function so that imfinfo can use other functions if imformats is
## configured to. It is also needed so that imformats can create a
## function handle for it.

## Author: Soren Hauberg <hauberg@gmail.com>

function info = __imfinfo__ (filename, ext)

  if (nargin < 1 || nargin > 2)
    print_usage ("imfinfo");
  endif

  if (! ischar (filename))
    error ("imfinfo: FILENAME must be a string");
  elseif (nargin >= 2 && ! ischar (ext))
    error ("imfinfo: EXT must be a string");
  endif
  filename = tilde_expand (filename);

  delete_file = false;
  unwind_protect

    fn = file_in_path (IMAGE_PATH, filename);
    if (isempty (fn))
      ## We couldn't find the file so...
      if (nargin >= 2)
        ## try adding a possible file extesion
        filename  = [filename "." ext];
        fn        = file_in_path (IMAGE_PATH, filename);
        if (isempty (fn))
          error ("imfinfo: cannot find file %s", filename);
        endif
      else
        ## try filename as an URL
        [fn, status, msg] = urlwrite (filename, tmpnam ());
        if (! status)
          error ("imfinfo: cannot find or download %s: %s", filename, msg);
        endif
        delete_file = true;
      endif
    endif

    info = __magick_finfo__ (fn);

  unwind_protect_cleanup
    if (delete_file)
      unlink (fn);
    endif
  end_unwind_protect

endfunction