1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
/******************************************************************************
* $Id$
*
* Project: GeoTIFF Driver
* Purpose: GDAL GeoTIFF support.
* Author: Frank Warmerdam, warmerdam@pobox.com
*
******************************************************************************
* Copyright (c) 1998, 2002, Frank Warmerdam <warmerdam@pobox.com>
* Copyright (c) 2010-2013, Even Rouault <even dot rouault at spatialys.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#ifndef GTIFF_H_INCLUDED
#define GTIFF_H_INCLUDED
#include "cpl_port.h"
#include "cpl_string.h"
#include <cstdint>
#include "gdal.h"
#include "tiffio.h"
CPL_C_START
int GTiffOneTimeInit();
void CPL_DLL LibgeotiffOneTimeInit();
CPL_C_END
void GTIFFSetInExternalOvr(bool b);
void GTIFFGetOverviewBlockSize(GDALRasterBandH hBand, int *pnBlockXSize,
int *pnBlockYSize);
void GTIFFSetJpegQuality(GDALDatasetH hGTIFFDS, int nJpegQuality);
void GTIFFSetWebPLevel(GDALDatasetH hGTIFFDS, int nWebPLevel);
void GTIFFSetJpegTablesMode(GDALDatasetH hGTIFFDS, int nJpegTablesMode);
void GTIFFSetWebPLossless(GDALDatasetH hGTIFFDS, bool bWebpLossless);
void GTIFFSetZLevel(GDALDatasetH hGTIFFDS, int nZLevel);
void GTIFFSetZSTDLevel(GDALDatasetH hGTIFFDS, int nZSTDLevel);
void GTIFFSetMaxZError(GDALDatasetH hGTIFFDS, double dfMaxZError);
int GTIFFGetCompressionMethod(const char *pszValue,
const char *pszVariableName);
bool GTIFFSupportsPredictor(int nCompression);
bool GTIFFUpdatePhotometric(const char *pszPhotometric,
const char *pszOptionKey, int nCompression,
const char *pszInterleave, int nBands,
uint16_t &nPhotometric, uint16_t &nPlanarConfig);
void GTiffDatasetWriteRPCTag(TIFF *hTIFF, char **papszRPCMD);
char **GTiffDatasetReadRPCTag(TIFF *hTIFF);
void GTiffWriteJPEGTables(TIFF *hTIFF, const char *pszPhotometric,
const char *pszJPEGQuality,
const char *pszJPEGTablesMode);
CPLString GTiffFormatGDALNoDataTagValue(double dfNoData);
const int knGTIFFJpegTablesModeDefault = 1; /* JPEGTABLESMODE_QUANT */
// Note: Was EXTRASAMPLE_ASSOCALPHA in GDAL < 1.10.
constexpr uint16_t DEFAULT_ALPHA_TYPE = EXTRASAMPLE_UNASSALPHA;
uint16_t GTiffGetAlphaValue(const char *pszValue, uint16_t nDefault);
bool GTIFFIsStandardColorInterpretation(GDALDatasetH hSrcDS,
uint16_t nPhotometric,
CSLConstList papszCreationOptions);
CPLString CPL_DLL GTiffGetCompressValues(bool &bHasLZW, bool &bHasDEFLATE,
bool &bHasLZMA, bool &bHasZSTD,
bool &bHasJPEG, bool &bHasWebP,
bool &bHasLERC, bool bForCOG);
#if !defined(TIFFTAG_GDAL_METADATA)
// The following 5 tags are now defined in tiff.h of libtiff > 4.1.0
#define TIFFTAG_GDAL_METADATA 42112
#define TIFFTAG_GDAL_NODATA 42113
#define TIFFTAG_RPCCOEFFICIENT 50844
/* GeoTIFF DGIWG */
/* https://www.awaresystems.be/imaging/tiff/tifftags/tiff_rsid.html */
#define TIFFTAG_TIFF_RSID 50908
/* https://www.awaresystems.be/imaging/tiff/tifftags/geo_metadata.html */
#define TIFFTAG_GEO_METADATA 50909
#endif
#if !defined(PREDICTOR_NONE)
#define PREDICTOR_NONE 1
#endif
#if !defined(COMPRESSION_LZMA)
#define COMPRESSION_LZMA 34925 /* LZMA2 */
#endif
#if !defined(TIFFTAG_LZMAPRESET)
#define TIFFTAG_LZMAPRESET 65562 /* LZMA2 preset (compression level) */
#endif
#if !defined(COMPRESSION_ZSTD)
#define COMPRESSION_ZSTD 50000 /* ZSTD */
#endif
#if !defined(TIFFTAG_ZSTD_LEVEL)
#define TIFFTAG_ZSTD_LEVEL 65564 /* ZSTD compression level */
#endif
#if !defined(COMPRESSION_LERC)
#define COMPRESSION_LERC 34887 /* LERC */
#endif
#ifndef TIFFTAG_LERC_VERSION
#define TIFFTAG_LERC_PARAMETERS \
50674 /* Stores LERC version and additional compression method */
#endif
#ifndef TIFFTAG_LERC_VERSION
/* Pseudo tags */
#define TIFFTAG_LERC_VERSION 65565 /* LERC version */
#define LERC_VERSION_2_4 4
#define TIFFTAG_LERC_ADD_COMPRESSION 65566 /* LERC additional compression */
#define LERC_ADD_COMPRESSION_NONE 0
#define LERC_ADD_COMPRESSION_DEFLATE 1
#define LERC_ADD_COMPRESSION_ZSTD 2
#define TIFFTAG_LERC_MAXZERROR 65567 /* LERC maximum error */
#endif
#if !defined(COMPRESSION_WEBP)
#define COMPRESSION_WEBP 50001 /* WebP */
#endif
#if !defined(TIFFTAG_WEBP_LEVEL)
#define TIFFTAG_WEBP_LEVEL 65568 /* WebP compression level */
#endif
#if !defined(TIFFTAG_WEBP_LOSSLESS)
#define TIFFTAG_WEBP_LOSSLESS 65569 /* WebP lossless/lossy */
#endif
#endif // GTIFF_H_INCLUDED
|