view util/sparco utils/thumbwrite.m @ 237:d4e792f5d382

Added tag ver_2.0_alpha1 for changeset 5f4e47b78f2b
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Thu, 19 Apr 2012 17:59:18 +0100
parents 62f20b91d870
children
line wrap: on
line source
function thumbwrite(data,name,opts)


%   Copyright 2008, Ewout van den Berg and Michael P. Friedlander
%   http://www.cs.ubc.ca/labs/scl/sparco
%   $Id: thumbwrite.m 1040 2008-06-26 20:29:02Z ewout78 $

%
% data       Thumbnail data in range 0-1
% name       Name of file (no extension)
% opts
%   .thumbtype  Type of image (png, eps, ps, ...)
%   .thumbdir   Output directory
%

[type,ext] = getFigureExt(opts.thumbtype);
data = round(data * 255) / 255;
imwrite(data,[opts.thumbpath,name,'.',ext],type);