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 316 317 318 319 320 321 322 323 324 325
|
/*
/--------------------------------------------------------------------
|
| $Id: pltiffenc.cpp,v 1.10 2004/09/11 12:41:35 uzadow Exp $
|
| TIFF file encoder. Uses LIBTIFF to do the actual conversion.
|
| Copyright (c) 1996-2002 Ulrich von Zadow
|
\--------------------------------------------------------------------
*/
#include "config.h"
#include <stdarg.h>
#include "pltiffenc.h"
#include "plbitmap.h"
#include "plexcept.h"
extern "C"
{
#include "tiffio.h" // for the tags definitions
#include "tif_msrc.h"
}
/////////////////////////////////////////////////////////////////////
// Class functions
// Creates an encoder
PLTIFFEncoder::PLTIFFEncoder()
: PLPicEncoder()
{
m_Compression = COMPRESSION_PACKBITS;
}
PLTIFFEncoder::~PLTIFFEncoder()
{}
void PLTIFFEncoder::SetCompression (PLWORD Compression)
{
m_Compression = Compression;
}
void PLTIFFEncoder::DoEncode (PLBmpBase * pBmp, PLDataSink* pDataSnk)
{
TIFF* tif = TIFFOpenMem (pDataSnk->m_pStartData,
pDataSnk->m_nMaxFileSize,
&(pDataSnk->m_nCurPos));
PLASSERT( tif );
/*
if (!tif)
raiseError (PL_ERRWRONG_SIGNATURE, PLTIFFDecoder::m_szLastErr);
*/
// initialize TIFF "directory"
SetBaseTags( tif, pBmp );
DoTiffEncode( pBmp, tif );
TIFFClose( tif );
}
void PLTIFFEncoder::DoTiffEncode (PLBmpBase* pBmp, TIFF* tif)
{
int k;
uint32 l, c, image_length, image_width;
// iterate over data
PLBYTE **pla = pBmp->GetLineArray();
PLASSERT( pla );
image_length = (uint32) pBmp->GetHeight();
image_width = (uint32) pBmp->GetWidth();
switch (pBmp->GetBitsPerPixel())
{
case 8:
{
// first, save the colormap
uint16 red[256];
uint16 green[256];
uint16 blue[256];
PLPixel32 * pPal = pBmp->GetPalette();
PLASSERT( pPal );
for (int i = 0; i < pBmp->GetNumColors(); i++, pPal++)
{
red[i] = pPal->GetR ();
green[i] = pPal->GetG ();
blue[i] = pPal->GetB ();
}
SetField( tif, TIFFTAG_COLORMAP, red, green, blue );
}
// fall-through
case 1: // TODO: a bit of error checking
for (l = 0; l < image_length; l++)
k = TIFFWriteScanline( tif, pla[l], l, 0 );
break;
case 32:
{
// TODO: check whether (r,g,b) components come in the correct order here...
if (pBmp->HasAlpha())
{
uint32 *plBuf = new uint32[image_width];
for (l = 0; l < image_length; l++)
{
for (c = 0; c < image_width; c++)
{
// For 32 bit, TIFFLIB wants abgr long word packed...
plBuf[c] =
((uint32)(pla[l][c*sizeof(PLPixel32) + PL_RGBA_ALPHA]) << 24) |
((uint32)(pla[l][c*sizeof(PLPixel32) + PL_RGBA_BLUE]) << 16) |
((uint32)(pla[l][c*sizeof(PLPixel32) + PL_RGBA_GREEN]) << 8 ) |
((uint32)(pla[l][c*sizeof(PLPixel32) + PL_RGBA_RED]));
}
k = TIFFWriteScanline( tif, plBuf, l, 0 );
}
delete [] plBuf;
}
else
{
PLBYTE* pBuf = new PLBYTE[3*image_width];
for (l = 0; l < image_length; l++)
{
for (c = 0; c < image_width; c++)
{
pBuf[c*3 + 0] = pla[l][c*sizeof(PLPixel32) + PL_RGBA_RED];
pBuf[c*3 + 1] = pla[l][c*sizeof(PLPixel32) + PL_RGBA_GREEN];
pBuf[c*3 + 2] = pla[l][c*sizeof(PLPixel32) + PL_RGBA_BLUE];
}
k = TIFFWriteScanline( tif, pBuf, l, 0 );
}
delete [] pBuf;
}
}
break;
default:
PLASSERT(false);
}
// we could flush at this point, but TIFFClose will do it anyway
}
// According to the characteristics of the given bitmap,
// set the baseline tags
int PLTIFFEncoder::SetBaseTags (TIFF* tif, PLBmpBase* pBmp)
{
PLASSERT( tif && pBmp );
uint16 ui16 = 0;
uint32 ui32 = 0;
ui32 = pBmp->GetWidth();
SetField( tif, TIFFTAG_IMAGEWIDTH, ui32 );
ui32 = pBmp->GetHeight();
SetField( tif, TIFFTAG_IMAGELENGTH, ui32 );
// one strip = the whole image
// SetField( tif, TIFFTAG_ROWSPERSTRIP, ui32 );
ui16 = pBmp->GetBitsPerPixel();
if (ui16 > 8) ui16 = 8;
SetField( tif, TIFFTAG_BITSPERSAMPLE, ui16 );
ui16 = pBmp->GetBitsPerPixel();
ui16 = ui16 <= 8 ? 1 : (pBmp->HasAlpha() ? 4 : 3);
SetField( tif, TIFFTAG_SAMPLESPERPIXEL, ui16 );
if (pBmp->HasAlpha())
{
// We'll default the alpha to "associated" and
// assume it's pre-multiplied. Note that Photoshop
// will load such a TIFF and use the alpha as the
// layer's transparency. If extraType is 2, then
// the alpha is unassociated, and Photoshop will
// import the alpha as a fourth channel.
short extraType[1] = {1};
SetField( tif, TIFFTAG_EXTRASAMPLES, 1, extraType);
}
ui16 = m_Compression;
SetField( tif, TIFFTAG_COMPRESSION, ui16 );
ui16 = PLANARCONFIG_CONTIG;
SetField( tif, TIFFTAG_PLANARCONFIG, ui16 );
/*
* The following tags are supposedly mandatory,
* but libtiff seems to have sensible defaults for us
*
ui32 = 0;
SetField( TIFFTAG_SUBFILETYPE, ui32 );
?!?
SetField( TIFFTAG_STRIPOFFSETS, ui32 );
?!?
SetField( TIFFTAG_STRIPBYTECOUNT, ui32 );
*
*
*/
float nRes = float(pBmp->GetResolution().x);
SetField(tif,TIFFTAG_XRESOLUTION,nRes);
nRes = float(pBmp->GetResolution().y);
SetField(tif,TIFFTAG_YRESOLUTION,nRes);
SetField (tif, TIFFTAG_RESOLUTIONUNIT, RESUNIT_INCH);
switch (pBmp->GetBitsPerPixel())
{
case 1:
{
// look at bi-level palette...
PLBYTE* p = (PLBYTE*) pBmp->GetPalette();
ui16 = p[PL_RGBA_RED] < p[PL_RGBA_RED + sizeof(PLPixel32)] &&
p[PL_RGBA_GREEN] < p[PL_RGBA_GREEN + sizeof(PLPixel32)] &&
p[PL_RGBA_BLUE] < p[PL_RGBA_BLUE + sizeof(PLPixel32)] ?
PHOTOMETRIC_MINISBLACK : PHOTOMETRIC_MINISWHITE;
SetField( tif, TIFFTAG_PHOTOMETRIC, ui16 );
}
break;
case 8:
ui16 = PHOTOMETRIC_PALETTE;
SetField( tif, TIFFTAG_PHOTOMETRIC, ui16 );
break;
case 32:
ui16 = PHOTOMETRIC_RGB;
SetField( tif, TIFFTAG_PHOTOMETRIC, ui16 );
break;
default:
PLASSERT(false);
}
return 1; // should reflect the successful directory initialisation
}
// Set field in directory.
int PLTIFFEncoder::SetField( TIFF* tif, int tag_id, ... )
{
int retv;
va_list marker;
va_start( marker, tag_id ); /* Initialize variable arguments. */
retv = TIFFVSetField( tif, tag_id, marker );
va_end( marker ); /* Reset variable arguments. */
return retv;
}
/*
/--------------------------------------------------------------------
|
| $Log: pltiffenc.cpp,v $
| Revision 1.10 2004/09/11 12:41:35 uzadow
| removed plstdpch.h
|
| Revision 1.9 2004/06/19 18:16:33 uzadow
| Documentation update
|
| Revision 1.8 2004/04/04 22:19:48 uzadow
| Added ability to save tiff with alpha.
|
| Revision 1.7 2003/08/03 16:41:45 uzadow
| More bigendian combatibility changes.
|
| Revision 1.6 2002/01/27 18:20:16 uzadow
| Updated copyright message; corrected pcx decoder bug.
|
| Revision 1.5 2001/10/17 13:19:47 uzadow
| Added support for photoshop tiff alpha channels.
|
| Revision 1.4 2001/10/16 17:12:26 uzadow
| Added support for resolution information (Luca Piergentili)
|
| Revision 1.3 2001/10/06 22:03:26 uzadow
| Added PL prefix to basic data types.
|
| Revision 1.2 2001/10/06 20:44:45 uzadow
| Linux compatibility
|
| Revision 1.1 2001/09/16 19:03:22 uzadow
| Added global name prefix PL, changed most filenames.
|
| Revision 1.14 2001/09/13 20:43:02 uzadow
| Added tiff compression support.
|
| Revision 1.13 2001/02/04 14:31:52 uzadow
| Member initialization list cleanup (Erik Hoffmann).
|
| Revision 1.12 2000/12/18 22:42:52 uzadow
| Replaced RGBAPIXEL with PLPixel32.
|
| Revision 1.11 2000/09/01 14:13:49 Administrator
| Removed MFC from paintX, added MSCV paintX sample.
|
| Revision 1.10 2000/01/16 20:43:15 anonymous
| Removed MFC dependencies
|
| Revision 1.9 2000/01/10 23:53:00 Ulrich von Zadow
| Changed formatting & removed tabs.
|
| Revision 1.8 1999/12/10 01:27:26 Ulrich von Zadow
| Added assignment operator and copy constructor to
| bitmap classes.
|
| Revision 1.7 1999/12/08 15:39:45 Ulrich von Zadow
| Unix compatibility changes
|
| Revision 1.6 1999/12/02 17:07:34 Ulrich von Zadow
| Changes by bdelmee.
|
| Revision 1.5 1999/10/03 18:50:51 Ulrich von Zadow
| Added automatic logging of changes.
|
|
\--------------------------------------------------------------------
*/
|