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
|
/*
/--------------------------------------------------------------------
|
| $Id: plpgmdec.cpp,v 1.10 2004/09/11 12:41:35 uzadow Exp $
| portable graymap Decoder Class
|
| Original author: Jose Miguel Buenaposada Biencinto.
|
| Copyright (c) 1996-2002 Ulrich von Zadow
|
\--------------------------------------------------------------------
*/
#include "plpgmdec.h"
#include "plexcept.h"
PLPGMDecoder::PLPGMDecoder
()
: PLPicDecoder(),
m_LastByte(0),
m_UseLastByte(false)
// Creates a decoder
{
}
PLPGMDecoder::~PLPGMDecoder
()
{
}
void PLPGMDecoder::Open (PLDataSource * pDataSrc)
{
Trace (2, "Decoding PGM.\n");
readPgmHeader(&m_PGMHeader, pDataSrc);
SetBmpInfo (PLPoint(m_PGMHeader.ImageWidth, m_PGMHeader.ImageHeight),
PLPoint (0,0), PLPixelFormat::L8);
}
void PLPGMDecoder::GetImage (PLBmpBase & Bmp)
{
readImage (&Bmp, m_pDataSrc);
}
void PLPGMDecoder::readPgmHeader
( PGMHEADER * pPgmHead, // Pointer to PGM header structure
PLDataSource * pDataSrc
)
{
int current = 0;
bool HeaderComplete = false;
// Read type
m_LastByte = ReadByte (pDataSrc);
if (m_LastByte!=0x50) // ASCII P
raiseError (PL_ERRFORMAT_UNKNOWN,
"PGM decoder: Is not the correct identifier P5 or P2.");
m_LastByte = ReadByte (pDataSrc);
if (m_LastByte==0x32) // ASCII 2
pPgmHead->ImageType = PGM_P2;
else if (m_LastByte==0x35) // ASCII 5
pPgmHead->ImageType = PGM_P5;
else
raiseError (PL_ERRFORMAT_UNKNOWN,
"PGM decoder: Is not the correct identifier P5 or P2.");
m_LastByte = ReadByte (pDataSrc);
// Search for the with, height and Max gray value
while (current<3)
{
if (m_LastByte==0x23) // # Starts a comment
skipComment(pDataSrc);
else if ((m_LastByte>=0x30)&&(m_LastByte<=0x39)) // A digit
switch (current)
{
case 0: // looking for the width
{
pPgmHead->ImageWidth = readASCIIDecimal(pDataSrc);
current++;
}
break;
case 1: // looking for the height
{
pPgmHead->ImageHeight = readASCIIDecimal(pDataSrc);
current++;
}
break;
case 2: // looking for the max gray value
{
pPgmHead->MaxGrayValue = readASCIIDecimal(pDataSrc);
if ((pPgmHead->MaxGrayValue>255)||(pPgmHead->MaxGrayValue<=0))
pPgmHead->MaxGrayValue=255;
current++;
}
break;
default:
continue;
}
else
skipPgmASCIISeparators(pDataSrc);
}
}
PLBYTE *PLPGMDecoder::readASCIILine(PLDataSource *pDataSrc)
{
int i = 0;
bool HaveLine = false;
PLBYTE byte;
PLBYTE* pLine = new PLBYTE[PGM_MAXLINESIZE]; // Line should not be larger than 70 bytes
do
{
if (i==80)
raiseError (PL_ERRFORMAT_UNKNOWN,
"PGM decoder: File Line to long.");
byte =ReadByte(pDataSrc);
pLine[i]=byte;
if ((byte==0x0D)|| // Carriege Return
(byte==0x0A)) // Line Feed
{
HaveLine=true;
pLine[i]=0x00;
}
i++;
}
while (!HaveLine);
return pLine;
}
int PLPGMDecoder::readASCIIDecimal(PLDataSource * pDataSrc)
{
int Value = 0;
int digit;
while ((m_LastByte>=0x30)&&(m_LastByte<=0x39)) // Is ASCII digit
{
digit = m_LastByte - 0x30;
Value = Value*10+digit;
m_LastByte = ReadByte(pDataSrc);
}
return Value;
}
void PLPGMDecoder::skipComment(PLDataSource * pDataSrc)
{
while ((m_LastByte!=0x0D)&& // Carriege Return
(m_LastByte!=0x0A)) // New Line
{
m_LastByte = ReadByte(pDataSrc);
}
}
void PLPGMDecoder::skipPgmASCIISeparators(PLDataSource * pDataSrc)
{
while ((m_LastByte==0x20)|| // Space
(m_LastByte==0x0D)|| // Carriege Return
// (m_LastByte<=0x10)|| // Tab
(m_LastByte==0x0A)) // New Line
{
m_LastByte = ReadByte(pDataSrc);
}
}
void PLPGMDecoder::readImage
( PLBmpBase * pBmp,
PLDataSource * pDataSrc
)
{
switch (m_PGMHeader.ImageType)
{
case PGM_P5:
case PGM_P2:
readData(pBmp, pDataSrc);
break;
default:
raiseError (PL_ERRFORMAT_UNKNOWN, "Unknown PGM image type.");
}
}
void PLPGMDecoder::readData
( PLBmpBase * pBmp,
PLDataSource * pDataSrc
)
{
int Width = m_PGMHeader.ImageWidth;
int Height = m_PGMHeader.ImageHeight;
PLBYTE * pDest;
PLBYTE ** pLineArray = pBmp->GetLineArray();
int y;
if (m_PGMHeader.ImageType == PGM_P2)
{
skipPgmASCIISeparators(pDataSrc);
m_UseLastByte = true;
}
for (y=0; y < Height; y++)
{
pDest = pLineArray[y];
if (m_PGMHeader.ImageType==PGM_P5) // P5
expandByteLine (pDest, m_PGMHeader.MaxGrayValue, Width, pDataSrc);
else // P2
expandASCIILine (pDest, m_PGMHeader.MaxGrayValue, Width, pDataSrc);
}
}
void PLPGMDecoder::expandASCIILine
( PLBYTE * pDest,
int MaxGrayValue,
int Width,
PLDataSource * pDataSrc
)
{
int x;
for (x=0; x<Width; x++)
{
*pDest = readASCIIPixel8 (MaxGrayValue, pDataSrc);
pDest ++;
}
}
void PLPGMDecoder::expandByteLine
( PLBYTE * pDest,
int MaxGrayValue,
int Width,
PLDataSource * pDataSrc
)
{
int x;
PLBYTE *pLine;
pLine = pDataSrc->ReadNBytes(Width);
if (pLine==NULL)
return;
for (x=0; x<Width; x++)
{
*pDest = (PLBYTE)(((int)pLine[x]*255)/MaxGrayValue);
pDest ++;
}
}
PLBYTE PLPGMDecoder::readASCIIPixel8
( int MaxGrayValue,
PLDataSource * pDataSrc
)
{
PLBYTE Dest;
int Value;
skipPgmASCIISeparators(pDataSrc);
m_UseLastByte = true;
Value = readASCIIDecimal(pDataSrc);
Dest = (PLBYTE)((Value*255)/MaxGrayValue);
return Dest;
}
/*
/--------------------------------------------------------------------
|
| $Log: plpgmdec.cpp,v $
| Revision 1.10 2004/09/11 12:41:35 uzadow
| removed plstdpch.h
|
| Revision 1.9 2004/09/09 16:52:49 artcom
| refactored PixelFormat
|
| Revision 1.8 2004/06/19 16:49:07 uzadow
| Changed GetImage so it works with PLBmpBase
|
| Revision 1.7 2002/08/04 21:20:41 uzadow
| no message
|
| 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.5 2001/02/04 14:31:52 uzadow
| Member initialization list cleanup (Erik Hoffmann).
|
| Revision 1.4 2000/12/18 22:42:52 uzadow
| Replaced RGBAPIXEL with PLPixel32.
|
| Revision 1.3 2000/05/27 16:34:05 Ulrich von Zadow
| Linux compatibility changes
|
| Revision 1.2 2000/05/23 10:19:11 Ulrich von Zadow
| Minor unix compatibility changes.
|
| Revision 1.1 2000/03/16 13:56:37 Ulrich von Zadow
| Added pgm decoder by Jose Miguel Buenaposada Biencinto
|
|
\--------------------------------------------------------------------
*/
|