it.geosolutions.imageio.plugins.geotiff
Class GeoTiffCreateOptionsHandler

Object
  extended by GDALCreateOptionsHandler
      extended by GeoTiffCreateOptionsHandler

public class GeoTiffCreateOptionsHandler
extends GDALCreateOptionsHandler

Author:
Daniele Romagnoli, GeoSolutions., Simone Giannecchini, GeoSolutions.

Constructor Summary
GeoTiffCreateOptionsHandler()
          This information is based on the documentation available at http://www.gdal.org/frmt_gtiff.html Creation Options:
TFW=YES: Force the generation of an associated ESRI world file (.tfw).See a World Files section for details..
 
Method Summary
 
Methods inherited from class GDALCreateOptionsHandler
addCreateOption, addCreateOptions, getCreateOptions, setCreateOption, setCreateOption, setCreateOption, setCreateOption
 
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GeoTiffCreateOptionsHandler

public GeoTiffCreateOptionsHandler()
This information is based on the documentation available at http://www.gdal.org/frmt_gtiff.html Creation Options:
TFW=YES: Force the generation of an associated ESRI world file (.tfw).See a World Files section for details..
INTERLEAVE=[BAND/PIXEL]: By default TIFF files with band interleaving (PLANARCONFIG_SEPARATE in TIFF terminology) are created. These are slightly more efficient for some purposes, but some applications only support pixel interleaved TIFF files. In these cases pass INTERLEAVE=PIXEL to produce pixel interleaved TIFF files (PLANARCONFIG_CONTIG in TIFF terminology).
TILED=YES: By default stripped TIFF files are created. This option can be used to force creation of tiled TIFF files.
BLOCKXSIZE=n: Sets tile width, defaults to 256.
BLOCKYSIZE=n: Set tile or strip height. Tile height defaults to 256, strip height defaults to a value such that one strip is 8K or less.
COMPRESS=[JPEG/LZW/PACKBITS/DEFLATE/NONE]: Set the compression to use. JPEG should only be used with Byte data. None is the default..
PREDICTOR=[1/2/3]: Set the predictor for LZW or DEFLATE compression. The default is 1 (no predictor), 2 is horizontal differencing and 3 is floating point prediction..
JPEG_QUALITY=[1-100]: Set the JPEG quality when using JPEG compression. A value of 100 is best quality (least compression), and 1 is worst quality (best compression). The default is 75.
PROFILE=[GDALGeoTIFF/GeoTIFF/BASELINE]: Control what non-baseline tags are emitted by GDAL. With GDALGeoTIFF (the default) various GDAL custom tags may be written. With GeoTIFF only GeoTIFF tags will be added to the baseline. With BASELINE no GDAL or GeoTIFF tags will be written. BASELINE is occasionally useful when writing files to be read by applications intolerant of unrecognized tags.
PHOTOMETRIC=[MINISBLACK/MINISWHITE/RGB/CMYK/YCBCR/CIELAB/ICCLAB/ITULAB]: Set the photometric interpretation tag. Default is MINISBLACK, but if the input image has 3 or 4 bands of Byte type, then RGB will be selected. You can override default photometric using this option.
ALPHA=YES: The first "extrasample" is marked as being alpha if there are any extra samples. This is necessary if you want to produce a gray scale TIFF file with an alpha band (for instance).



Copyright © 2006-2010 GeoSolutions. All Rights Reserved.