Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tifffile(1) [debian man page]

TIFFFILE(1)							   User Commands						       TIFFFILE(1)

NAME
tifffile - Read image and meta-data from TIFF, STK, LSM, OME-TIFF, and FluoView files. SYNOPSIS
tifffile [options] files... DESCRIPTION
Only a subset of the TIFF specification is supported, mainly uncompressed and losslessly compressed 1-32 bit integer as well as 32 and 64-bit float images, which are commonly used in scientific imaging. TIFF, the Tagged Image File Format, is under the control of Adobe Systems. STK and LSM are TIFF with custom extensions used by MetaMorph respectively Carl Zeiss MicroImaging. Currently only primary info records are read for STK, FluoView, and NIH image formats. Image and meta-data can be read from TIFF, BigTIFF, OME-TIFF, STK, LSM, NIH, and FluoView files. Only a subset of the TIFF specification is supported, mainly uncompressed and losslessly compressed 2**(0 to 6) bit integer, 16, 32 and 64-bit float, grayscale and RGB(A) images, which are commonly used in bioscientific imaging. Specifically, reading JPEG or CCITT compressed image data is not implemented. Only pri- mary info records are read for STK, FluoView, and NIH image formats. OPTIONS
--version show program's version number and exit -h, --help show this help message and exit -p PAGE, --page=PAGE display single page -s SERIES, --series=SERIES display series of pages of same shape --noplot don't display images --interpol=INTERPOL image interpolation method --dpi=DPI set plot resolution --debug raise exception on failures --test try read all images in path --doctest runs the internal tests -v, --verbose -q, --quiet AUTHOR
Christoph Gohlke <http://www.lfd.uci.edu/~gohlke Laboratory for Fluorescence Dynamics, University of California, Irvine This manual page was written by Mathieu Malaterre <malat@debian.org> for the Debian GNU/Linux system, but may be used by others. SEE ALSO
tiffdump(1), tiffinfo(1). tifffile 2012.04.21 April 2012 TIFFFILE(1)

Check Out this Related Man Page

img-tiff(n)															       img-tiff(n)

__________________________________________________________________________________________________________________________________________________

NAME
img-tiff - Img, Tagged Image File Format (tiff) SYNOPSIS
package require Tk package require img::tiff ?1.4? image create photo ?name? ?options? _________________________________________________________________ DESCRIPTION
The package img::tiff is a sub-package of Img. It can be loaded as a part of the complete Img support, via package require Img, or on its own, via package require img::tiff. Like all packages of Img it does not provide new commands, but extends the existing Tk command image so that it supports files containing raster images in the Tagged Image File Format (tiff). More specifically img::tiff extends Tk's photo image type. The name of the new format handler is tiff. This handler provides new additional configuration options. See section TIFF OPTIONS for more detailed explanations. All of the above means that in a call like image create photo ?name? ?options? [1] Image data in tiff format (options -data and -file) is detected automatically. [2] The format name tiff is recognized by the option -format. In addition the value for the option is treated as list and may contain any of the special options listed in section TIFF OPTIONS. TIFF OPTIONS
The handler provides three options, one for reading from a TIFF image, the other two influencing the writing of such. -index n This option is for reading from TIFF files containing more than one image (multi-page TIFF. When specified it will read the n'th image in the data. The first image is at index 0 and will be read by default, i.e. when the option is not specified. -compression type This option specifies the type of compression to use when writing TIFF data. It has to be one of none, jpeg, packbits, or deflate. The default is none. -byteorder type This option specifies the byteorder to use when writing TIFF data. It has to be one of bigendian, littleendian, network, smallen- dian, or the empty string. The default is the empty string. The values bigendian and network are aliases of each other, as are littleendian and smallendian. SEE ALSO
img-bmp, img-dted, img-gif, img-ico, img-intro, img-jpeg, img-pcx, img-pixmap, img-png, img-ppm, img-ps, img-raw, img-sgi, img-sun, img- tga, img-tiff, img-window, img-xbm, img-xpm KEYWORDS
image handling, tiff, tk COPYRIGHT
Copyright (c) 1995-2009 Jan Nijtmans <nijtmans@users.sourceforge.net> Img 1.4 img-tiff(n)
Man Page