1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/imagpcx.cpp
3 // Purpose: wxImage PCX handler
4 // Author: Guillermo Rodriguez Garcia <guille@iies.es>
7 // Copyright: (c) 1999 Guillermo Rodriguez Garcia
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
18 #if wxUSE_IMAGE && wxUSE_PCX
21 #include "wx/object.h"
25 #include "wx/palette.h"
29 #include "wx/imagpcx.h"
30 #include "wx/wfstream.h"
31 #include "wx/module.h"
33 //-----------------------------------------------------------------------------
35 //-----------------------------------------------------------------------------
37 IMPLEMENT_DYNAMIC_CLASS(wxPCXHandler
,wxImageHandler
)
41 //-----------------------------------------------------------------------------
42 // RLE encoding and decoding
43 //-----------------------------------------------------------------------------
45 void RLEencode(unsigned char *p
, unsigned int size
, wxOutputStream
& s
)
47 unsigned int data
, last
, cont
;
49 // Write 'size' bytes. The PCX official specs say there will be
50 // a decoding break at the end of each scanline, so in order to
51 // force this decoding break use this function to write, at most,
52 // _one_ complete scanline at a time.
54 last
= (unsigned char) *(p
++);
60 data
= (unsigned char) *(p
++);
62 // Up to 63 bytes with the same value can be stored using
63 // a single { cont, value } pair.
65 if ((data
== last
) && (cont
< 63))
71 // need to write a 'counter' byte?
72 if ((cont
> 1) || ((last
& 0xC0) == 0xC0))
73 s
.PutC((char) (cont
| 0xC0));
81 // write the last one and return;
82 if ((cont
> 1) || ((last
& 0xC0) == 0xC0))
83 s
.PutC((char) (cont
| 0xC0));
88 void RLEdecode(unsigned char *p
, unsigned int size
, wxInputStream
& s
)
90 unsigned int i
, data
, cont
;
92 // Read 'size' bytes. The PCX official specs say there will be
93 // a decoding break at the end of each scanline (but not at the
94 // end of each plane inside a scanline). Only use this function
95 // to read one or more _complete_ scanlines. Else, more than
96 // 'size' bytes might be read and the buffer might overflow.
100 data
= (unsigned char)s
.GetC();
102 // If ((data & 0xC0) != 0xC0), then the value read is a data
103 // byte. Else, it is a counter (cont = val & 0x3F) and the
104 // next byte is the data byte.
106 if ((data
& 0xC0) != 0xC0)
108 *(p
++) = (unsigned char)data
;
114 data
= (unsigned char)s
.GetC();
115 for (i
= 1; i
<= cont
; i
++)
116 *(p
++) = (unsigned char)data
;
123 //-----------------------------------------------------------------------------
124 // PCX reading and saving
125 //-----------------------------------------------------------------------------
128 #define HDR_MANUFACTURER 0
129 #define HDR_VERSION 1
130 #define HDR_ENCODING 2
131 #define HDR_BITSPERPIXEL 3
136 #define HDR_NPLANES 65
137 #define HDR_BYTESPERLINE 66
138 #define HDR_PALETTEINFO 68
142 wxPCX_8BIT
, // 8 bpp, 1 plane (8 bit)
143 wxPCX_24BIT
// 8 bpp, 3 planes (24 bit)
148 wxPCX_OK
= 0, // everything was OK
149 wxPCX_INVFORMAT
= 1, // error in pcx file format
150 wxPCX_MEMERR
= 2, // error allocating memory
151 wxPCX_VERERR
= 3 // error in pcx version number
156 // Loads a PCX file into the wxImage object pointed by image.
157 // Returns wxPCX_OK on success, or an error code otherwise
158 // (see above for error codes)
160 int ReadPCX(wxImage
*image
, wxInputStream
& stream
)
162 unsigned char hdr
[128]; // PCX header
163 unsigned char pal
[768]; // palette for 8 bit images
164 unsigned char *p
; // space to store one scanline
165 unsigned char *dst
; // pointer into wxImage data
166 unsigned int width
, height
; // size of the image
167 unsigned int bytesperline
; // bytes per line (each plane)
168 int bitsperpixel
; // bits per pixel (each plane)
169 int nplanes
; // number of planes
170 int encoding
; // is the image RLE encoded?
171 int format
; // image format (8 bit, 24 bit)
174 // Read PCX header and check the version number (it must
175 // be at least 5 or higher for 8 bit and 24 bit images).
177 stream
.Read(hdr
, 128);
179 if (hdr
[HDR_VERSION
] < 5) return wxPCX_VERERR
;
181 // Extract all image info from the PCX header.
183 encoding
= hdr
[HDR_ENCODING
];
184 nplanes
= hdr
[HDR_NPLANES
];
185 bitsperpixel
= hdr
[HDR_BITSPERPIXEL
];
186 bytesperline
= hdr
[HDR_BYTESPERLINE
] + 256 * hdr
[HDR_BYTESPERLINE
+ 1];
187 width
= (hdr
[HDR_XMAX
] + 256 * hdr
[HDR_XMAX
+ 1]) -
188 (hdr
[HDR_XMIN
] + 256 * hdr
[HDR_XMIN
+ 1]) + 1;
189 height
= (hdr
[HDR_YMAX
] + 256 * hdr
[HDR_YMAX
+ 1]) -
190 (hdr
[HDR_YMIN
] + 256 * hdr
[HDR_YMIN
+ 1]) + 1;
192 // Check image format. Currently supported formats are
193 // 8 bits (8 bpp, 1 plane) and 24 bits (8 bpp, 3 planes).
195 if ((nplanes
== 3) && (bitsperpixel
== 8))
196 format
= wxPCX_24BIT
;
197 else if ((nplanes
== 1) && (bitsperpixel
== 8))
200 return wxPCX_INVFORMAT
;
202 // If the image is of type wxPCX_8BIT, then there is
203 // a palette at the end of the image data. If we were
204 // working with a file, we could seek at the end to the
205 // end (SeekI(-769, wxFromEnd) and read the palette
206 // before proceeding. Unfortunately, this would prevent
207 // loading several PCXs in a single stream, so we can't
208 // do it. Thus, 8-bit images will have to be decoded in
209 // two passes: one to read and decode the image data,
210 // and another to replace 'colour indexes' with RGB
213 // Resize the image and allocate memory for a scanline.
215 image
->Create(width
, height
);
220 if ((p
= (unsigned char *) malloc(bytesperline
* nplanes
)) == NULL
)
223 // Now start reading the file, line by line, and store
224 // the data in the format required by wxImage.
226 dst
= image
->GetData();
228 for (j
= height
; j
; j
--)
231 RLEdecode(p
, bytesperline
* nplanes
, stream
);
233 stream
.Read(p
, bytesperline
* nplanes
);
239 for (i
= 0; i
< width
; i
++)
241 // first pass, just store the colour index
249 for (i
= 0; i
< width
; i
++)
252 *(dst
++) = p
[i
+ bytesperline
];
253 *(dst
++) = p
[i
+ 2 * bytesperline
];
262 // For 8 bit images, we read the palette, and then do a second
263 // pass replacing indexes with their RGB values;
265 if (format
== wxPCX_8BIT
)
269 if (stream
.GetC() != 12)
270 return wxPCX_INVFORMAT
;
272 stream
.Read(pal
, 768);
274 p
= image
->GetData();
275 for (unsigned long k
= height
* width
; k
; k
--)
278 *(p
++) = pal
[3 * index
];
279 *(p
++) = pal
[3 * index
+ 1];
280 *(p
++) = pal
[3 * index
+ 2];
284 unsigned char r
[256];
285 unsigned char g
[256];
286 unsigned char b
[256];
287 for (i
= 0; i
< 256; i
++)
293 image
->SetPalette(wxPalette(256, r
, g
, b
));
294 #endif // wxUSE_PALETTE
301 // Saves a PCX file into the wxImage object pointed by image.
302 // Returns wxPCX_OK on success, or an error code otherwise
303 // (see above for error codes). Will try to save as 8-bit
304 // PCX if possible, and then fall back to 24-bit if there
305 // are more than 256 different colours.
307 int SavePCX(wxImage
*image
, wxOutputStream
& stream
)
309 unsigned char hdr
[128]; // PCX header
310 unsigned char pal
[768]; // palette for 8 bit images
311 unsigned char *p
; // space to store one scanline
312 unsigned char *src
; // pointer into wxImage data
313 unsigned int width
, height
; // size of the image
314 unsigned int bytesperline
; // bytes per line (each plane)
315 unsigned char nplanes
= 3; // number of planes
316 int format
= wxPCX_24BIT
; // image format (8 bit, 24 bit)
317 wxImageHistogram histogram
; // image histogram
318 unsigned long key
; // key in the hashtable
321 // See if we can save as 8 bit.
323 if (image
->CountColours(256) <= 256)
325 image
->ComputeHistogram(histogram
);
330 // Get image dimensions, calculate bytesperline (must be even,
331 // according to PCX specs) and allocate space for one complete
335 return wxPCX_INVFORMAT
;
337 width
= image
->GetWidth();
338 height
= image
->GetHeight();
339 bytesperline
= width
;
340 if (bytesperline
% 2)
343 if ((p
= (unsigned char *) malloc(bytesperline
* nplanes
)) == NULL
)
346 // Build header data and write it to the stream. Initially,
347 // set all bytes to zero (most values default to zero).
349 memset(hdr
, 0, sizeof(hdr
));
351 hdr
[HDR_MANUFACTURER
] = 10;
352 hdr
[HDR_VERSION
] = 5;
353 hdr
[HDR_ENCODING
] = 1;
354 hdr
[HDR_NPLANES
] = nplanes
;
355 hdr
[HDR_BITSPERPIXEL
] = 8;
356 hdr
[HDR_BYTESPERLINE
] = (unsigned char)(bytesperline
% 256);
357 hdr
[HDR_BYTESPERLINE
+ 1] = (unsigned char)(bytesperline
/ 256);
358 hdr
[HDR_XMAX
] = (unsigned char)((width
- 1) % 256);
359 hdr
[HDR_XMAX
+ 1] = (unsigned char)((width
- 1) / 256);
360 hdr
[HDR_YMAX
] = (unsigned char)((height
- 1) % 256);
361 hdr
[HDR_YMAX
+ 1] = (unsigned char)((height
- 1) / 256);
362 hdr
[HDR_PALETTEINFO
] = 1;
364 stream
.Write(hdr
, 128);
366 // Encode image data line by line and write it to the stream
368 src
= image
->GetData();
370 for (; height
; height
--)
376 unsigned char r
, g
, b
;
378 for (i
= 0; i
< width
; i
++)
383 key
= (r
<< 16) | (g
<< 8) | b
;
385 p
[i
] = (unsigned char)histogram
[key
].index
;
391 for (i
= 0; i
< width
; i
++)
394 p
[i
+ bytesperline
] = *(src
++);
395 p
[i
+ 2 * bytesperline
] = *(src
++);
401 RLEencode(p
, bytesperline
* nplanes
, stream
);
406 // For 8 bit images, build the palette and write it to the stream:
407 if (format
== wxPCX_8BIT
)
409 // zero unused colours
410 memset(pal
, 0, sizeof(pal
));
414 for (wxImageHistogram::iterator entry
= histogram
.begin();
415 entry
!= histogram
.end(); ++entry
)
418 index
= entry
->second
.index
;
419 pal
[3 * index
] = (unsigned char)(key
>> 16);
420 pal
[3 * index
+ 1] = (unsigned char)(key
>> 8);
421 pal
[3 * index
+ 2] = (unsigned char)(key
);
425 stream
.Write(pal
, 768);
431 //-----------------------------------------------------------------------------
433 //-----------------------------------------------------------------------------
435 bool wxPCXHandler::LoadFile( wxImage
*image
, wxInputStream
& stream
, bool verbose
, int WXUNUSED(index
) )
439 if (!CanRead(stream
))
442 wxLogError(_("PCX: this is not a PCX file."));
449 if ((error
= ReadPCX(image
, stream
)) != wxPCX_OK
)
455 case wxPCX_INVFORMAT
: wxLogError(_("PCX: image format unsupported")); break;
456 case wxPCX_MEMERR
: wxLogError(_("PCX: couldn't allocate memory")); break;
457 case wxPCX_VERERR
: wxLogError(_("PCX: version number too low")); break;
458 default: wxLogError(_("PCX: unknown error !!!"));
468 bool wxPCXHandler::SaveFile( wxImage
*image
, wxOutputStream
& stream
, bool verbose
)
472 if ((error
= SavePCX(image
, stream
)) != wxPCX_OK
)
478 case wxPCX_INVFORMAT
: wxLogError(_("PCX: invalid image")); break;
479 case wxPCX_MEMERR
: wxLogError(_("PCX: couldn't allocate memory")); break;
480 default: wxLogError(_("PCX: unknown error !!!"));
485 return (error
== wxPCX_OK
);
488 bool wxPCXHandler::DoCanRead( wxInputStream
& stream
)
490 unsigned char c
= stream
.GetC();
494 // not very safe, but this is all we can get from PCX header :-(
498 #endif // wxUSE_STREAMS
500 #endif // wxUSE_IMAGE && wxUSE_PCX