]>
git.saurik.com Git - wxWidgets.git/blob - src/common/imagpcx.cpp
1 /////////////////////////////////////////////////////////////////////////////
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 /////////////////////////////////////////////////////////////////////////////
12 We don't put pragma implement in this file because it is already present in
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
27 #if wxUSE_STREAMS && wxUSE_PCX
30 #include "wx/wfstream.h"
31 #include "wx/module.h"
37 #include "wx/object.h"
39 //-----------------------------------------------------------------------------
41 //-----------------------------------------------------------------------------
43 void RLEencode(unsigned char *p
, unsigned int size
, wxOutputStream
& s
)
45 unsigned int data
, last
, cont
;
47 // Write 'size' bytes. The PCX official specs say there will be
48 // a decoding break at the end of each scanline, so in order to
49 // force this decoding break use this function to write, at most,
50 // _one_ complete scanline at a time.
52 last
= (unsigned char) *(p
++);
58 data
= (unsigned char) *(p
++);
60 // Up to 63 bytes with the same value can be stored using a
61 // single { cont, value } pair.
63 if ((data
== last
) && (cont
< 63))
69 // Need to write a 'counter' byte?
71 if ((cont
> 1) || ((last
& 0xC0) == 0xC0))
72 s
.PutC((char) (cont
| 0xC0));
81 // Write the last one and return;
83 if ((cont
> 1) || ((last
& 0xC0) == 0xC0))
84 s
.PutC((char) (cont
| 0xC0));
89 void RLEdecode(unsigned char *p
, unsigned int size
, wxInputStream
& s
)
91 unsigned int i
, data
, cont
;
93 // Read 'size' bytes. The PCX official specs say there will be
94 // a decoding break at the end of each scanline (but not at the
95 // end of each plane inside a scanline). Only use this function
96 // to read one or more _complete_ scanlines. Else, more than
97 // 'size' bytes might be read and the buffer might overflow.
101 data
= (unsigned char)s
.GetC();
103 // If ((data & 0xC0) != 0xC0), then the value read is a data
104 // byte. Else, it is a counter (cont = val & 0x3F) and the
105 // next byte is the data byte.
107 if ((data
& 0xC0) != 0xC0)
115 data
= (unsigned char)s
.GetC();
116 for (i
= 1; i
<= cont
; i
++)
125 #define HDR_MANUFACTURER 0
126 #define HDR_VERSION 1
127 #define HDR_ENCODING 2
128 #define HDR_BITSPERPIXEL 3
133 #define HDR_NPLANES 65
134 #define HDR_BYTESPERLINE 66
135 #define HDR_PALETTEINFO 68
139 wxPCX_8BIT
, // 8 bpp, 1 plane (8 bit)
140 wxPCX_24BIT
// 8 bpp, 3 planes (24 bit)
145 wxPCX_OK
= 0, // everything was OK
146 wxPCX_INVFORMAT
= 1, // error in pcx file format
147 wxPCX_MEMERR
= 2, // error allocating memory
148 wxPCX_VERERR
= 3 // error in pcx version number
153 // Loads a PCX file into the wxImage object pointed by image.
154 // Returns wxPCX_OK on success, or an error code otherwise
155 // (see above for error codes)
157 int ReadPCX(wxImage
*image
, wxInputStream
& stream
)
159 unsigned char hdr
[128]; // PCX header
160 unsigned char pal
[768]; // palette for 8 bit images
161 unsigned char *p
; // space to store one scanline
162 unsigned char *dst
; // pointer into wxImage data
163 unsigned int width
, height
; // size of the image
164 unsigned int bytesperline
; // bytes per line (each plane)
165 int bitsperpixel
; // bits per pixel (each plane)
166 int nplanes
; // number of planes
167 int encoding
; // is the image RLE encoded?
168 int format
; // image format (8 bit, 24 bit)
172 // Read PCX header and check the version number (it must
173 // be at least 5 or higher for 8 bit and 24 bit images).
175 stream
.Read(hdr
, 128);
177 if (hdr
[HDR_VERSION
] < 5) return wxPCX_VERERR
;
179 // Extract all image info from the PCX header.
181 encoding
= hdr
[HDR_ENCODING
];
182 nplanes
= hdr
[HDR_NPLANES
];
183 bitsperpixel
= hdr
[HDR_BITSPERPIXEL
];
184 bytesperline
= hdr
[HDR_BYTESPERLINE
] + 256 * hdr
[HDR_BYTESPERLINE
+ 1];
185 width
= (hdr
[HDR_XMAX
] + 256 * hdr
[HDR_XMAX
+ 1]) -
186 (hdr
[HDR_XMIN
] + 256 * hdr
[HDR_XMIN
+ 1]) + 1;
187 height
= (hdr
[HDR_YMAX
] + 256 * hdr
[HDR_YMAX
+ 1]) -
188 (hdr
[HDR_YMIN
] + 256 * hdr
[HDR_YMIN
+ 1]) + 1;
190 // Check image format. Currently supported formats are
191 // 8 bits (8 bpp, 1 plane) and 24 bits (8 bpp, 3 planes).
193 if ((nplanes
== 3) && (bitsperpixel
== 8))
194 format
= wxPCX_24BIT
;
195 else if ((nplanes
== 1) && (bitsperpixel
== 8))
198 return wxPCX_INVFORMAT
;
200 // If the image is of type wxPCX_8BIT, then there is a
201 // palette at the end of the file. Read it now before
204 if (format
== wxPCX_8BIT
)
206 pos
= stream
.TellI();
207 stream
.SeekI(-769, wxFromEnd
);
209 if (stream
.GetC() != 12)
210 return wxPCX_INVFORMAT
;
212 stream
.Read(pal
, 768);
213 stream
.SeekI(pos
, wxFromStart
);
216 // Allocate memory for a scanline and resize the image.
218 image
->Create(width
, height
);
223 if ((p
= (unsigned char *) malloc(bytesperline
* nplanes
)) == NULL
)
226 // Now start reading the file, line by line, and store
227 // the data in the format required by wxImage.
229 dst
= image
->GetData();
231 for (; height
; height
--)
234 RLEdecode(p
, bytesperline
* nplanes
, stream
);
236 stream
.Read(p
, bytesperline
* nplanes
);
242 for (i
= 0; i
< width
; i
++)
244 *(dst
++) = pal
[ 3 * (p
[i
]) ];
245 *(dst
++) = pal
[ 3 * (p
[i
]) + 1];
246 *(dst
++) = pal
[ 3 * (p
[i
]) + 2];
252 for (i
= 0; i
< width
; i
++)
255 *(dst
++) = p
[i
+ bytesperline
];
256 *(dst
++) = p
[i
+ 2 * bytesperline
];
269 // Saves a PCX file into the wxImage object pointed by image.
270 // Returns wxPCX_OK on success, or an error code otherwise
271 // (see above for error codes). Currently, always saves images
272 // in 24 bit format. XXX
274 int SavePCX(wxImage
*image
, wxOutputStream
& stream
)
276 unsigned char hdr
[128]; // PCX header
277 unsigned char pal
[768]; // palette for 8 bit images
278 unsigned char *p
; // space to store one scanline
279 unsigned char *src
; // pointer into wxImage data
280 unsigned int width
, height
; // size of the image
281 unsigned int bytesperline
; // bytes per line (each plane)
282 int nplanes
; // number of planes
283 int format
; // image format (8 bit, 24 bit)
284 wxHashTable
h(wxKEY_INTEGER
); // image histogram
285 unsigned long ncolours
; // num. of different colours
286 unsigned long key
; // key in the hashtable
289 // Get the histogram of the image, and decide whether to save
290 // as 8 bit or 24 bit, according to the number of colours.
292 ncolours
= image
->CountColours(257);
296 image
->ComputeHistogram(h
);
302 format
= wxPCX_24BIT
;
306 // Get image dimensions, calculate bytesperline (must be even,
307 // according to PCX specs) and allocate space for one complete
311 return wxPCX_INVFORMAT
;
313 width
= image
->GetWidth();
314 height
= image
->GetHeight();
315 bytesperline
= width
;
316 if (bytesperline
% 2)
319 if ((p
= (unsigned char *) malloc(bytesperline
* nplanes
)) == NULL
)
322 // Build header data and write it to the stream. Initially,
323 // set all bytes to zero (most values default to zero).
325 memset(hdr
, 0, sizeof(hdr
));
327 hdr
[HDR_MANUFACTURER
] = 10;
328 hdr
[HDR_VERSION
] = 5;
329 hdr
[HDR_ENCODING
] = 1;
330 hdr
[HDR_NPLANES
] = nplanes
;
331 hdr
[HDR_BITSPERPIXEL
] = 8;
332 hdr
[HDR_BYTESPERLINE
] = bytesperline
% 256;
333 hdr
[HDR_BYTESPERLINE
+ 1] = bytesperline
/ 256;
334 hdr
[HDR_XMAX
] = (width
- 1) % 256;
335 hdr
[HDR_XMAX
+ 1] = (width
- 1) / 256;
336 hdr
[HDR_YMAX
] = (height
- 1) % 256;
337 hdr
[HDR_YMAX
+ 1] = (height
- 1) / 256;
338 hdr
[HDR_PALETTEINFO
] = 1;
340 stream
.Write(hdr
, 128);
342 // Encode image data line by line and write it to the stream
344 src
= image
->GetData();
346 for (; height
; height
--)
352 unsigned char r
, g
, b
;
355 for (i
= 0; i
< width
; i
++)
360 key
= (r
<< 16) | (g
<< 8) | b
;
362 hnode
= (wxHNode
*) h
.Get(key
);
369 for (i
= 0; i
< width
; i
++)
372 p
[i
+ bytesperline
] = *(src
++);
373 p
[i
+ 2 * bytesperline
] = *(src
++);
379 RLEencode(p
, bytesperline
* nplanes
, stream
);
384 // For 8 bit images, build the palette and write it to the stream
386 if (format
== wxPCX_8BIT
)
391 // zero unused colours
392 memset(pal
, 0, sizeof(pal
));
395 while ((node
= h
.Next()) != NULL
)
397 key
= node
->GetKeyInteger();
398 hnode
= (wxHNode
*) node
->GetData();
400 pal
[3 * hnode
->index
] = (unsigned char)(key
>> 16);
401 pal
[3 * hnode
->index
+ 1] = (unsigned char)(key
>> 8);
402 pal
[3 * hnode
->index
+ 2] = (unsigned char)(key
);
407 stream
.Write(pal
, 768);
413 //-----------------------------------------------------------------------------
415 //-----------------------------------------------------------------------------
417 IMPLEMENT_DYNAMIC_CLASS(wxPCXHandler
,wxImageHandler
)
419 bool wxPCXHandler::LoadFile( wxImage
*image
, wxInputStream
& stream
, bool verbose
, int WXUNUSED(index
) )
423 if (!CanRead(stream
))
426 wxLogError(_("PCX: this is not a PCX file."));
433 if ((error
= ReadPCX(image
, stream
)) != wxPCX_OK
)
439 case wxPCX_INVFORMAT
: wxLogError(_("wxPCXHandler: image format unsupported")); break;
440 case wxPCX_MEMERR
: wxLogError(_("wxPCXHandler: couldn't allocate memory")); break;
441 case wxPCX_VERERR
: wxLogError(_("wxPCXHandler: version number too low")); break;
442 default: wxLogError(_("wxPCXHandler: unknown error !!!"));
452 bool wxPCXHandler::SaveFile( wxImage
*image
, wxOutputStream
& stream
, bool verbose
)
456 if ((error
= SavePCX(image
, stream
)) != wxPCX_OK
)
462 case wxPCX_INVFORMAT
: wxLogError(_("wxPCXHandler: invalid image")); break;
463 case wxPCX_MEMERR
: wxLogError(_("wxPCXHandler: couldn't allocate memory")); break;
464 default: wxLogError(_("wxPCXHandler: unknown error !!!"));
469 return (error
== wxPCX_OK
);
472 bool wxPCXHandler::DoCanRead( wxInputStream
& stream
)
477 stream
.SeekI(-1, wxFromCurrent
);
479 // not very safe, but this is all we can get from PCX header :-(
483 #endif // wxUSE_STREAMS && wxUSE_PCX