/usr/include/ossim/imaging/ossimTiffWriter.h is in libossim-dev 1.7.21-3ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | //*******************************************************************
//
// License: See top level LICENSE.txt file.
//
// Author: Frank Warmerdam (warmerda@home.com)
//
// Description:
//
// Contains class declaration for TiffWriter.
//
//*******************************************************************
// $Id: ossimTiffWriter.h 11683 2007-09-07 17:25:30Z gpotts $
#ifndef ossimTiffWriter_HEADER
#define ossimTiffWriter_HEADER
#include <tiffio.h>
#include <ossim/imaging/ossimImageFileWriter.h>
#include <ossim/base/ossimKeywordlist.h>
#include <ossim/base/ossimRefPtr.h>
#include <ossim/projection/ossimMapProjectionInfo.h>
#include <ossim/base/ossimNBandLutDataObject.h>
#include <ossim/imaging/ossimNBandToIndexFilter.h>
class ossimMapProjectionInfo;
class OSSIMDLLEXPORT ossimTiffWriter : public ossimImageFileWriter
{
public:
ossimTiffWriter();
virtual ~ossimTiffWriter();
enum UnitType
{
UNDEFINED = 0,
LINEAR_METER = 9001,
LINEAR_FOOT = 9002,
LINEAR_FOOT_US_SURVEY = 9003,
ANGULAR_DEGREES = 9102
};
enum
{
USER_DEFINED = 32767
};
/**
* void getImageTypeList(std::vector<ossimString>& imageTypeList)const
*
* Appends this writer image types to list "imageTypeList".
*
* This writer has the following types:
* tiff_strip
* tiff_strip_band_separate
* tiff_tiled
* tiff_tiled_band_separate
*
* @param imageTypeList stl::vector<ossimString> list to append to.
*/
virtual void getImageTypeList(std::vector<ossimString>& imageTypeList)const;
virtual bool isOpen()const;
virtual bool open();
virtual void close();
/**
* Ranges from 1 to 100 with 100 being the best. This value is only used
* if the compression type is set to jpeg. (default = 75)
*
* @param quality Value to set theJpegQuality to.
*
* @note If quality is out of range it will be set to DEFAULT_JPEG_QUALITY.
*/
virtual void setJpegQuality(ossim_int32 quality);
/**
* @return theJpegQuality
*/
virtual ossim_int32 getJpegQuality()const;
/**
* compression type can be JPEG, PACKBITS, or ZIP/DEFLATE
*/
virtual void setCompressionType(const ossimString& type);
virtual ossimString getCompressionType()const;
virtual bool getGeotiffFlag()const;
virtual void setGeotiffFlag(bool flag);
virtual void setTileSize(const ossimIpt& tileSize);
virtual ossimIpt getOutputTileSize()const;
virtual ossim_int32 setProjectionInfo(const ossimMapProjectionInfo& proj);
void setLut(const ossimNBandLutDataObject& lut);
/**
* saves the state of the object.
*/
virtual bool saveState(ossimKeywordlist& kwl,
const char* prefix=0)const;
/**
* Method to the load (recreate) the state of an object from a keyword
* list. Return true if ok or false on error.
*/
virtual bool loadState(const ossimKeywordlist& kwl,
const char* prefix=0);
/**
* Will set the property whose name matches the argument
* "property->getName()".
*
* @param property Object containing property to set.
*/
virtual void setProperty(ossimRefPtr<ossimProperty> property);
/**
* @param name Name of property to return.
*
* @returns A pointer to a property object which matches "name". Returns
* NULL if no match is found.
*/
virtual ossimRefPtr<ossimProperty> getProperty(const ossimString& name)const;
/**
* Pushes this's names onto the list of property names.
*
* @param propertyNames array to add this's property names to.
*/
virtual void getPropertyNames(std::vector<ossimString>& propertyNames)const;
bool hasImageType(const ossimString& imageType) const;
protected:
virtual bool writeFile();
/**
* @return true on success, false on error.
*/
bool openTiff();
/**
* @return true on success, false on error.
*/
bool closeTiff();
/**
* Writes image data to a tiled tiff format.
* @return true on success, false on error.
*/
bool writeToTiles();
/**
* Writes image data to a tiled tiff band separate format.
* @return true on success, false on error.
*/
bool writeToTilesBandSep();
/**
* Writes image data to a strip tiff format.
* @return true on success, false on error.
*/
bool writeToStrips();
/**
* Writes image data to a strip tiff band separate format.
* @return true on success, false on error.
*/
bool writeToStripsBandSep();
/**
* Writes tiff tags from ossimMapProjectionInfo to tiff file.
* @return true on success, false on error.
*/
bool writeTiffTags();
/**
* Writes geotiff tags from ossimMapProjectionInfo to tiff file.
* @return true on success, false on error.
*/
bool writeGeotiffTags(ossimRefPtr<ossimMapProjectionInfo> projectionInfo);
/**
* @return true if the output type is tiled, false if not.
*/
bool isTiled() const;
void writeMinMaxTags(const vector<ossim_float64>& minBand,
const vector<ossim_float64>& maxBand);
bool isLutEnabled()const;
UnitType getUnitType(ossim_int32 pcsCode,
const ossimString& projName) const;
UnitType getPcsUnitType(ossim_int32 pcsCode) const;
TIFF* theTif;
ossimString theCompressionType;
ossimString thePhotoMetric;
ossim_int32 theJpegQuality;
bool theOutputGeotiffTagsFlag;
bool theImagineNad27Flag;
bool theColorLutFlag;
ossimRefPtr<ossimMapProjectionInfo> theProjectionInfo;
ossimIpt theOutputTileSize;
ossimNBandLutDataObject theColorLut;
ossimFilename theLutFilename;
bool theForceBigTiffFlag;
bool theBigTiffFlag;
mutable ossimRefPtr<ossimNBandToIndexFilter> theNBandToIndexFilter;
TYPE_DATA
};
#endif /* End of "#ifndef ossimTiffWriter_HEADER" */
|