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 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
|
/*=========================================================================
*
* Copyright NumFOCUS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#ifndef itkTIFFImageIO_h
#define itkTIFFImageIO_h
#include "ITKIOTIFFExport.h"
#include "itkImageIOBase.h"
#include <fstream>
namespace itk
{
// BTX
class TIFFReaderInternal;
// ETX
/**
* \class TIFFImageIO
*
* \brief ImageIO object for reading and writing TIFF images
*
* The compressors supported include "PackBits" (default), "JPEG",
* "DEFLATE" and may also include "LZW". Only the "JPEG" compressor
* supports the compression level for JPEG quality parameter in the
* range 0-100.
*
* \ingroup IOFilters
* \ingroup ITKIOTIFF
*
* \sphinx
* \sphinxexample{IO/TIFF/WriteATIFFImage,Write A TIFF Image}
* \endsphinx
*/
class ITKIOTIFF_EXPORT TIFFImageIO : public ImageIOBase
{
public:
ITK_DISALLOW_COPY_AND_MOVE(TIFFImageIO);
/** Standard class type aliases. */
using Self = TIFFImageIO;
using Superclass = ImageIOBase;
using Pointer = SmartPointer<Self>;
using RGBPixelType = RGBPixel<unsigned short>;
using PaletteType = std::vector<RGBPixelType>;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** \see LightObject::GetNameOfClass() */
itkOverrideGetNameOfClassMacro(TIFFImageIO);
/*-------- This part of the interface deals with reading data. ------ */
/** Determine the file type. Returns true if this ImageIO can read the
* file specified. */
bool
CanReadFile(const char *) override;
/** Set the spacing and dimension information for the set filename. */
void
ReadImageInformation() override;
/** Reads the data from disk into the memory buffer provided. */
void
Read(void * buffer) override;
/** Reads 3D data from multi-pages tiff. */
virtual void
ReadVolume(void * buffer);
/*-------- This part of the interfaces deals with writing data. ----- */
/** Determine the file type. Returns true if this ImageIO can read the
* file specified. */
bool
CanWriteFile(const char *) override;
/** Writes the spacing and dimensions of the image.
* Assumes SetFileName has been called with a valid file name. */
void
WriteImageInformation() override;
/** Writes the data to disk from the memory buffer provided. Make sure
* that the IORegion has been set properly. */
void
Write(const void * buffer) override;
enum
{
NOFORMAT,
RGB_,
GRAYSCALE,
PALETTE_RGB,
PALETTE_GRAYSCALE,
OTHER
};
// BTX
enum
{ // Compression types
NoCompression,
PackBits,
JPEG,
Deflate,
LZW
};
// ETX
/** \brief Set type and automatically enable/disable compression.
*
* Since LZW compression is patented outside US, the additional work
* steps have to be taken in order to use that compression. */
void
SetCompressionToNoCompression()
{
this->UseCompressionOff();
this->SetCompressor("NoCompression");
}
void
SetCompressionToPackBits()
{
this->UseCompressionOn();
this->SetCompressor("PackBits");
}
void
SetCompressionToJPEG()
{
this->UseCompressionOn();
this->SetCompressor("JPEG");
}
void
SetCompressionToDeflate()
{
this->UseCompressionOn();
this->SetCompressor("Deflate");
}
void
SetCompressionToLZW()
{
this->UseCompressionOn();
this->SetCompressor("LZW");
}
/** Set/Get the level of quality for the output images if
* Compression is JPEG. Settings vary from 1 to 100.
* 100 is the highest quality. Default is 75 */
virtual void
SetJPEGQuality(int _JPEGQuality)
{
this->SetCompressionLevel(_JPEGQuality);
}
virtual int
GetJPEGQuality() const
{
return this->GetCompressionLevel();
}
/** Get a const ref to the palette of the image. In the case of non palette
* image or ExpandRGBPalette set to true, a vector of size
* 0 is returned.
* For multipage Images, only the palette of the first page is read */
itkGetConstReferenceMacro(ColorPalette, PaletteType);
/** Set the palette of the image.
* For multipage images, the same palette is going to be used for all pages */
void
SetColorPalette(const PaletteType _arg)
{
if (this->m_ColorPalette != _arg)
{
this->m_ColorPalette = _arg;
this->Modified();
}
}
protected:
TIFFImageIO();
~TIFFImageIO() override;
void
PrintSelf(std::ostream & os, Indent indent) const override;
void
InternalSetCompressor(const std::string & _compressor) override;
// This method is protected because it does not keep
// ImageIO::m_Compressor and TIFFImageIO::m_Compression in sync.
void
SetCompression(int compression)
{
m_Compression = compression;
}
void
InternalWrite(const void * buffer);
void
InitializeColors();
void
ReadGenericImage(void * out, unsigned int width, unsigned int height);
// To support Zeiss images
void
ReadTwoSamplesPerPixelImage(void * out, unsigned int width, unsigned int height);
unsigned int
GetFormat();
void
GetColor(uint64_t index, uint16_t * red, uint16_t * green, uint16_t * blue);
// Check that tag t can be found
bool
CanFindTIFFTag(unsigned int t);
// Read and returns the raw bytes of tag t
void *
ReadRawByteFromTag(unsigned int t, unsigned int & value_count);
// Populate m_ColorPalette from the file palette
// The palette corresponds to the one of the first page in case of multipage tiff
void
PopulateColorPalette();
TIFFReaderInternal * m_InternalImage{};
void
ReadTIFFTags();
int m_Compression{};
PaletteType m_ColorPalette{};
private:
void
AllocateTiffPalette(uint16_t bps);
void
ReadCurrentPage(void * buffer, size_t pixelOffset);
template <typename TComponent>
void
ReadGenericImage(void * _out, unsigned int width, unsigned int height);
template <typename TComponent>
void
RGBAImageToBuffer(void * out, const uint32_t * tempImage);
template <typename TType>
void
PutGrayscale(TType * to,
TType * from,
unsigned int xsize,
unsigned int ysize,
unsigned int toskew,
unsigned int fromskew);
template <typename TType>
void
PutRGB_(TType * to, TType * from, unsigned int xsize, unsigned int ysize, unsigned int toskew, unsigned int fromskew);
template <typename TType, typename TFromType>
void
PutPaletteGrayscale(TType * to,
TFromType * from,
unsigned int xsize,
unsigned int ysize,
unsigned int toskew,
unsigned int fromskew);
template <typename TType, typename TFromType>
void
PutPaletteRGB(TType * to,
TFromType * from,
unsigned int xsize,
unsigned int ysize,
unsigned int toskew,
unsigned int fromskew);
template <typename TType, typename TFromType>
void
PutPaletteScalar(TType * to,
TFromType * from,
unsigned int xsize,
unsigned int ysize,
unsigned int toskew,
unsigned int fromskew);
uint16_t * m_ColorRed{};
uint16_t * m_ColorGreen{};
uint16_t * m_ColorBlue{};
uint64_t m_TotalColors{ 0 };
unsigned int m_ImageFormat{ TIFFImageIO::NOFORMAT };
};
} // end namespace itk
#endif // itkTIFFImageIO_h
|