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 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
|
/*
/--------------------------------------------------------------------
|
| $Id: pljpegdec.cpp,v 1.13 2004/09/11 12:41:35 uzadow Exp $
| JPEG Decoder Class
|
| JPEG file decoder. Uses the independent JPEG group's library
| to do the actual conversion.
|
| Copyright (c) 1996-2002 Ulrich von Zadow
|
\--------------------------------------------------------------------
*/
#include "pljpegdec.h"
#include "plexcept.h"
#include "plexif.h"
#include "jmemsrc.h"
// This is for RGB_RED, RGB_GREEN, RGB_BLUE, RGB_PIXELSIZE
#define JPEG_INTERNALS
#include <jmorecfg.h>
/////////////////////////////////////////////////////////////////////
// Error handling.
METHODDEF(void)
error_exit (j_common_ptr pcinfo)
// This procedure is called by the IJPEG library when an error
// occurs.
{
/* Create the message string */
char sz[256];
(pcinfo->err->format_message) (pcinfo, sz);
strcat (sz, "\n");
PLPicDecoder::raiseError (PL_ERRFORMAT_NOT_SUPPORTED, sz);
}
/////////////////////////////////////////////////////////////////////
// Class functions
PLJPEGDecoder::PLJPEGDecoder
()
: PLPicDecoder(),
m_bFast(true),
m_pExifData(NULL)
// Creates a decoder
{
cinfo.err = jpeg_std_error (&jerr);
jerr.error_exit = error_exit; // Register custom error manager.
jpeg_create_decompress (&cinfo);
}
PLJPEGDecoder::~PLJPEGDecoder
()
{
jpeg_destroy_decompress (&cinfo);
}
void PLJPEGDecoder::SetFast
( bool bFast
)
// true (the default) selects fast but sloppy decoding.
{
m_bFast = bFast;
}
void PLJPEGDecoder::Open (PLDataSource * pDataSrc)
{
try
{
PLPixelFormat pf = PLPixelFormat::X8R8G8B8;
JMETHOD( void, notify, (j_common_ptr));
notify = JNotification;
// Initialize custom data source.
// Jo Hagelberg 15.4.99: added pDataSrc and notify
jpeg_mem_src (&cinfo, pDataSrc->ReadEverything(),
pDataSrc->GetFileSize(), (void*)pDataSrc, notify);
m_pExifData = new PLExif;
jpeg_save_markers(&cinfo, JPEG_APP0 + 1, 0xFFFF);
// jpeg_save_markers(&cinfo, JPEG_COM, 0xFFFF); // also comment even though not really EXIF
jpeg_read_header (&cinfo, true);
m_pExifData->ReadData(&cinfo);
int DestBPP = 32;
bool bIsGreyscale = false;
if (cinfo.out_color_space == JCS_GRAYSCALE)
{
/*DestBPP = 8;
bIsGreyscale = true;*/
pf = PLPixelFormat::L8;
}
PLPoint DPI;
DPI.x = cinfo.X_density;
DPI.y = cinfo.Y_density;
if (DPI.x == 1 || DPI.y == 1)
{
// Unknown DPI
DPI.x = 0;
DPI.y = 0;
}
// Check for dots per centimeter and convert if nessesary.
// We assume that 'unknown' density_unit (=0) means inches here.
if (cinfo.density_unit == 2)
{
DPI.x = int(2.54*DPI.x);
DPI.y = int(2.54*DPI.y);
}
SetBmpInfo (PLPoint (cinfo.image_width, cinfo.image_height), DPI, pf);
}
catch (PLTextException)
{
jpeg_abort_decompress(&cinfo);
throw;
}
}
void PLJPEGDecoder::GetImage (PLBmpBase & Bmp)
{
try
{
if (m_bFast)
{
cinfo.do_fancy_upsampling = false;
}
// Choose floating point DCT method.
cinfo.dct_method = JDCT_FLOAT;
jpeg_start_decompress (&cinfo);
if (cinfo.out_color_space == JCS_GRAYSCALE)
decodeGray (&Bmp);
else
decodeRGB (&Bmp);
jpeg_finish_decompress (&cinfo);
}
catch (PLTextException)
{
jpeg_abort_decompress(&cinfo);
throw;
}
}
void PLJPEGDecoder::GetExifData(PLExif& ExifData)
{
ExifData = *m_pExifData;
}
void PLJPEGDecoder::Close()
{
if (m_pExifData)
{
delete m_pExifData;
m_pExifData = NULL;
}
PLPicDecoder::Close();
}
void PLJPEGDecoder::decodeRGB
( PLBmpBase * pBmp)
// Assumes IJPEG decoder is already set up.
{
int CurLine = 0;
#if ((PL_RGBA_RED!=RGB_RED)||(PL_RGBA_GREEN!=RGB_GREEN)||(PL_RGBA_BLUE!=RGB_BLUE)||(4!=RGB_PIXELSIZE))
PLBYTE * pBuf;
JSAMPARRAY ppBuf = &pBuf;
pBuf = new PLBYTE[GetWidth()*sizeof (PLPixel32)];
#endif
int read = 0;
while (CurLine < GetHeight())
{
// Correct pixel ordering if libjpeg is configured differently
// than paintlib.
#if ((PL_RGBA_RED!=RGB_RED)||(PL_RGBA_GREEN!=RGB_GREEN)||(PL_RGBA_BLUE!=RGB_BLUE)||(4!=RGB_PIXELSIZE))
PLPixel32 ** pLineArray = pBmp->GetLineArray32();
jpeg_read_scanlines (&cinfo, ppBuf, 1);
int i;
for (i=0; i<GetWidth(); i++)
{
PLBYTE * pSrcPixel = pBuf+i*RGB_PIXELSIZE;
PLPixel32 * pDestPixel = pLineArray[CurLine]+i;
pDestPixel->SetR (pSrcPixel[RGB_RED]);
pDestPixel->SetG (pSrcPixel[RGB_GREEN]);
pDestPixel->SetB (pSrcPixel[RGB_BLUE]);
pDestPixel->SetA (0xFF);
}
CurLine++;
#else
PLBYTE ** pLineArray = pBmp->GetLineArray();
read = jpeg_read_scanlines (&cinfo,&pLineArray[CurLine],32);
CurLine+=min(read,(GetHeight()-CurLine));
if(read==0)
break;
#endif
}
#if ((PL_RGBA_RED!=RGB_RED)||(PL_RGBA_GREEN!=RGB_GREEN)||(PL_RGBA_BLUE!=RGB_BLUE)||(4!=RGB_PIXELSIZE))
delete[] pBuf;
#endif
}
void PLJPEGDecoder::decodeGray
( PLBmpBase * pBmp)
// Assumes IJPEG decoder is already set up.
{
PLBYTE * pDst;
int CurLine = 0;
PLBYTE * pBuf = new PLBYTE [GetWidth()];
try
{
JSAMPARRAY ppBuf = &pBuf;
PLBYTE ** pLineArray = pBmp->GetLineArray();
while (CurLine < GetHeight())
{
ppBuf = &pDst;
*ppBuf = pLineArray[CurLine];
jpeg_read_scanlines (&cinfo, ppBuf, 1);
CurLine++;
}
}
catch(...)
{
delete [] pBuf;
throw;
}
delete [] pBuf;
}
/*
* progress notification callback
* since this is a static function we need pDataSrc from cinfo->client_data
* progress is calculated (0...1) and PaintLib's Notification called
*/
void PLJPEGDecoder::JNotification (j_common_ptr cinfo)
{
double part;
PLDataSource *pDataSrc;
/* calculated according to jpeg lib manual
* note: this may not be precice when using buffered image mode
* todo: think hard of alternatives 4 this case ... :-)
*/
part = ( (double)cinfo->progress->completed_passes +
((double)cinfo->progress->pass_counter/cinfo->progress->pass_limit) ) /
(double)cinfo->progress->total_passes;
// call Notification in PLDataSource
pDataSrc = (PLDataSource*) cinfo->client_data;
if (pDataSrc)
{
pDataSrc->OProgressNotification( part);
}
}
/*
/--------------------------------------------------------------------
|
| $Log: pljpegdec.cpp,v $
| Revision 1.13 2004/09/11 12:41:35 uzadow
| removed plstdpch.h
|
| Revision 1.12 2004/09/09 16:52:49 artcom
| refactored PixelFormat
|
| Revision 1.11 2004/06/19 16:49:07 uzadow
| Changed GetImage so it works with PLBmpBase
|
| Revision 1.10 2003/08/03 16:41:45 uzadow
| More bigendian combatibility changes.
|
| Revision 1.9 2003/04/13 21:51:43 uzadow
| Added exif loading - windows ver.
|
| Revision 1.8 2003/02/15 21:26:58 uzadow
| Added win32 version of url data source.
|
| Revision 1.7 2002/12/11 21:17:48 uzadow
| Fixed jpeg rgb order problem.
|
| Revision 1.6 2002/08/04 20:08:01 uzadow
| Added PLBmpInfo class, ability to extract metainformation from images without loading the whole image and proper greyscale support.
|
| Revision 1.5 2002/03/31 13:36:42 uzadow
| Updated copyright.
|
| Revision 1.4 2001/10/21 17:12:40 uzadow
| Added PSD decoder beta, removed BPPWanted from all decoders, added PLFilterPixel.
|
| Revision 1.3 2001/10/16 17:12:26 uzadow
| Added support for resolution information (Luca Piergentili)
|
| Revision 1.2 2001/10/06 22:37:08 uzadow
| Linux compatibility.
|
| Revision 1.1 2001/09/16 19:03:22 uzadow
| Added global name prefix PL, changed most filenames.
|
| Revision 1.19 2001/09/15 17:12:40 uzadow
| Added jpeg codec optimizations by Petr Kures.
|
| Revision 1.18 2001/02/04 14:31:52 uzadow
| Member initialization list cleanup (Erik Hoffmann).
|
| Revision 1.17 2001/01/21 14:28:21 uzadow
| Changed array cleanup from delete to delete[].
|
| Revision 1.16 2000/12/18 22:42:52 uzadow
| Replaced RGBAPIXEL with PLPixel32.
|
| Revision 1.15 2000/11/10 10:40:53 jmbuena
| Fixed jpeg decoder bug on GNU/Linux
|
| Revision 1.5 2000/11/08 13:36:32 jmbuena
| Changes due to paintlib changes
|
| Revision 1.14 2000/10/30 14:32:51 uzadow
| Removed dependency on jinclude.h
|
| Revision 1.13 2000/10/27 11:58:25 jmbuena
| paintlib-config added, libjpeg and so on taked from the system ones, copied libs internal headers onto paintlib
|
| Revision 1.12 2000/10/26 21:06:17 uzadow
| Removed dependency on jpegint.h
|
| Revision 1.11 2000/10/24 23:00:09 uzadow
| Added byte order conversion.
|
| Revision 1.10 2000/08/13 12:11:43 Administrator
| Added experimental DirectDraw-Support
|
| Revision 1.9 2000/01/16 20:43:13 anonymous
| Removed MFC dependencies
|
| Revision 1.8 1999/12/14 12:30:13 Ulrich von Zadow
| Corrected copy constructor and assignment operator.
|
| Revision 1.7 1999/12/08 16:31:40 Ulrich von Zadow
| Unix compatibility
|
| Revision 1.6 1999/12/08 15:39:45 Ulrich von Zadow
| Unix compatibility changes
|
| Revision 1.5 1999/10/19 21:25:16 Ulrich von Zadow
| no message
|
| Revision 1.4 1999/10/03 18:50:51 Ulrich von Zadow
| Added automatic logging of changes.
|
|
\--------------------------------------------------------------------
*/
|