Changes between Version 85 and Version 86 of WKTRaster/SpecificationWorking03


Ignore:
Timestamp:
May 24, 2011, 11:18:30 AM (13 years ago)
Author:
Bborie Park
Comment:

typo

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/SpecificationWorking03

    v85 v86  
    262262
    263263'''ST_AsTIFF(raster, compression) -> TIFF as "bytea"'''[[BR]]
    264 Return the raster as a JPEG encoded as a PostgreSQL bytea. If raster is a multiband raster and no band were selected with ST_Band() every band are written to the resulting TIFF.
     264Return the raster as a TIFF encoded as a PostgreSQL bytea. If raster is a multiband raster and no band were selected with ST_Band() every band are written to the resulting TIFF.
    265265
    266266compression=[JPEG/LZW/PACKBITS/DEFLATE/CCITTRLE/CCITTFAX3/CCITTFAX4/NONE]: Set the type of compression to use. None is the default. The CCITT compression should only be used with 1bit (NBITS=1) data. JPEG should only be used with Byte data. When using JPEG add a number specifying the quality. 75 is the default. e.g. ST_AsTIFF(raster, "JPEG60") (copied from http://www.gdal.org/frmt_gtiff.html)