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 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
|
// ==========================================================
// PCX Loader
//
// Design and implementation by
// - Floris van den Berg (flvdberg@wxs.nl)
// - Jani Kajala (janik@remedy.fi)
// - Markus Loibl (markus.loibl@epost.de)
// - Herv Drolon (drolon@infonie.fr)
// - Juergen Riecker (j.riecker@gmx.de)
//
// This file is part of FreeImage 3
//
// COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY
// OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
// THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE
// OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
// CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT
// THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
// SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
// PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER
// THIS DISCLAIMER.
//
// Use at your own risk!
// ==========================================================
#include "FreeImage.h"
#include "Utilities.h"
// ----------------------------------------------------------
// Constants + headers
// ----------------------------------------------------------
#define IO_BUF_SIZE 2048
// ----------------------------------------------------------
#ifdef _WIN32
#pragma pack(push, 1)
#else
#pragma pack(1)
#endif
typedef struct tagPCXHEADER {
BYTE manufacturer; // Magic number (0x0A = ZSoft Z)
BYTE version; // Version 0 == 2.5
// 2 == 2.8 with palette info
// 3 == 2.8 without palette info
// 5 == 3.0 with palette info
BYTE encoding; // Encoding: 0 = uncompressed, 1 = PCX rle compressed
BYTE bpp; // Bits per pixel per plane (only 1 or 8)
WORD window[4]; // left, upper, right,lower pixel coord.
WORD hdpi; // Horizontal resolution
WORD vdpi; // Vertical resolution
BYTE color_map[48]; // Colormap for 16-color images
BYTE reserved;
BYTE planes; // Number of planes (1, 3 or 4)
WORD bytes_per_line; // Bytes per row (always even)
WORD palette_info; // Palette information (1 = color or b&w; 2 = gray scale)
WORD h_screen_size;
WORD v_screen_size;
BYTE filler[54]; // Reserved filler
} PCXHEADER;
#ifdef _WIN32
#pragma pack(pop)
#else
#pragma pack()
#endif
// ==========================================================
// Internal functions
// ==========================================================
static WORD
readline(FreeImageIO &io, fi_handle handle, BYTE *buffer, WORD length, BOOL rle, BYTE * ReadBuf, int * ReadPos) {
// -----------------------------------------------------------//
// Read either run-length encoded or normal image data //
// //
// THIS IS HOW RUNTIME LENGTH ENCODING WORKS IN PCX: //
// //
// 1) If the upper 2 bits of a byte are set, //
// the lower 6 bits specify the count for the next byte //
// //
// 2) If the upper 2 bits of the byte are clear, //
// the byte is actual data with a count of 1 //
// //
// Note that a scanline always has an even number of bytes //
// -------------------------------------------------------------
BYTE count = 0, value = 0;
WORD written = 0;
if (rle) {
// run-length encoded read
while (length--) {
if (count == 0) {
if (*ReadPos >= IO_BUF_SIZE - 1 ) {
if (*ReadPos == IO_BUF_SIZE - 1) {
// we still have one BYTE, copy it to the start pos
*ReadBuf = ReadBuf[IO_BUF_SIZE - 1];
io.read_proc(ReadBuf + 1, 1, IO_BUF_SIZE - 1, handle);
} else {
// read the complete buffer
io.read_proc(ReadBuf, 1, IO_BUF_SIZE, handle);
}
*ReadPos = 0;
}
value = *(ReadBuf + (*ReadPos)++);
if ((value & 0xC0) == 0xC0) {
count = value & 0x3F;
value = *(ReadBuf + (*ReadPos)++); // $JR
} else {
count = 1;
}
}
count--;
*(buffer + written++) = value;
}
} else {
// normal read
written = (WORD)io.read_proc(buffer, length, 1, handle);
}
return written;
}
#ifdef FREEIMAGE_BIGENDIAN
static void
SwapHeader(PCXHEADER *header) {
SwapShort(&header->window[0]);
SwapShort(&header->window[1]);
SwapShort(&header->window[2]);
SwapShort(&header->window[3]);
SwapShort(&header->hdpi);
SwapShort(&header->vdpi);
SwapShort(&header->bytes_per_line);
SwapShort(&header->palette_info);
SwapShort(&header->h_screen_size);
SwapShort(&header->v_screen_size);
}
#endif
// ==========================================================
// Plugin Interface
// ==========================================================
static int s_format_id;
// ==========================================================
// Plugin Implementation
// ==========================================================
/*!
Returns the format string for the plugin. Each plugin,
both internal in the DLL and external in a .fip file, must have
a unique format string to be addressable.
*/
static const char * DLL_CALLCONV
Format() {
return "PCX";
}
/*!
Returns a description string for the plugin. Though a
description is not necessary per-se,
it is advised to return an unique string in order to tell the
user what type of bitmaps this plugin will read and/or write.
*/
static const char * DLL_CALLCONV
Description() {
return "Zsoft Paintbrush";
}
/*!
Returns a comma separated list of file
extensions indicating what files this plugin can open. The
list, being used by FreeImage_GetFIFFromFilename, is usually
used as a last resort in finding the type of the bitmap we
are dealing with. Best is to check the first few bytes on
the low-level bits level first and compare them with a known
signature . If this fails, FreeImage_GetFIFFromFilename can be
used.
*/
static const char * DLL_CALLCONV
Extension() {
return "pcx";
}
/*!
Returns an (optional) regular expression to help
software identifying a bitmap type. The
expression can be applied to the first few bytes (header) of
the bitmap. FreeImage is not capable of processing regular expression itself,
but FreeImageQt, the FreeImage Trolltech support library, can. If RegExpr
returns NULL, FreeImageQt will automatically bypass Trolltech's regular
expression support and use its internal functions to find the bitmap type.
*/
static const char * DLL_CALLCONV
RegExpr() {
return NULL;
}
static const char * DLL_CALLCONV
MimeType() {
return "image/x-pcx";
}
/*!
Validates a bitmap by reading the first few bytes
and comparing them with a known bitmap signature.
TRUE is returned if the bytes match the signature, FALSE otherwise.
The Validate function is used by using FreeImage_GetFileType.
Note: a plugin can safely read data any data from the bitmap without seeking back
to the original entry point; the entry point is stored prior to calling this
function and restored after.
Note: because of FreeImage's io redirection support, the header for the bitmap
must be on the start of the bitmap or at least on a known part in the bitmap. It is
forbidden to seek to the end of the bitmap or to a point relative to the end of a bitmap,
because the end of the bitmap is not always known.
*/
static BOOL DLL_CALLCONV
Validate(FreeImageIO *io, fi_handle handle) {
BYTE pcx_signature = 0x0A;
BYTE signature = 0;
io->read_proc(&signature, 1, 1, handle);
return (pcx_signature == signature);
}
/*!
This function is used to 'ask' the plugin if it can write
a bitmap in a certain bitdepth. Different bitmap types have different
capabilities, for example not all formats allow writing in palettized mode.
This function is there provide an uniform interface to the plugin's
capabilities. SupportsExportDepth returns TRUE if the plugin support writing
in the asked bitdepth, or FALSE if it doesn't. The function also
returns FALSE if bitmap saving is not supported by the plugin at all.
*/
static BOOL DLL_CALLCONV
SupportsExportDepth(int depth) {
return FALSE;
}
static BOOL DLL_CALLCONV
SupportsExportType(FREE_IMAGE_TYPE type) {
return FALSE;
}
// ----------------------------------------------------------
/*!
Loads a bitmap into memory. On entry it is assumed that
the bitmap to be loaded is of the correct type. If the bitmap
is of an incorrect type, the plugin might not gracefully fail but
crash or enter an endless loop. It is also assumed that all
the bitmap data is available at one time. If the bitmap is not complete,
for example because it is being downloaded while loaded, the plugin
might also not gracefully fail.
The Load function has the following parameters:
The first parameter (FreeImageIO *io) is a structure providing
function pointers in order to make use of FreeImage's IO redirection. Using
FreeImage's file i/o functions instead of standard ones it is garantueed
that all bitmap types, both current and future ones, can be loaded from
memory, file cabinets, the internet and more. The second parameter (fi_handle handle)
is a companion of FreeImageIO and can be best compared with the standard FILE* type,
in a generalized form.
The third parameter (int page) indicates wether we will be loading a certain page
in the bitmap or if we will load the default one. This parameter is only used if
the plugin supports multi-paged bitmaps, e.g. cabinet bitmaps that contain a series
of images or pages. If the plugin does support multi-paging, the page parameter
can contain either a number higher or equal to 0 to load a certain page, or -1 to
load the default page. If the plugin does not support multi-paging,
the page parameter is always -1.
The fourth parameter (int flags) manipulates the load function to load a bitmap
in a certain way. Every plugin has a different flag parameter with different meanings.
The last parameter (void *data) can contain a special data block used when
the file is read multi-paged. Because not every plugin supports multi-paging
not every plugin will use the data parameter and it will be set to NULL.However,
when the plugin does support multi-paging the parameter contains a pointer to a
block of data allocated by the Open function.
*/
static FIBITMAP * DLL_CALLCONV
Load(FreeImageIO *io, fi_handle handle, int page, int flags, void *data) {
FIBITMAP *dib = NULL;
BYTE *bits; // Pointer to dib data
RGBQUAD *pal; // Pointer to dib palette
BYTE *line = NULL; // PCX raster line
BYTE *ReadBuf = NULL; // buffer;
WORD linelength; // Length of raster line in bytes
WORD pitch; // Length of DIB line in bytes
BOOL rle; // True if the file is run-length encoded
if (handle) {
try {
// process the header
PCXHEADER header;
io->read_proc(&header, sizeof(PCXHEADER), 1, handle);
#ifdef FREEIMAGE_BIGENDIAN
SwapHeader(&header);
#endif
// check PCX identifier
if ((header.manufacturer != 0x0A) || (header.version > 5))
throw "Invalid PCX file";
// allocate a new DIB
WORD width = header.window[2] - header.window[0] + 1;
WORD height = header.window[3] - header.window[1] + 1;
WORD bitcount = header.bpp * header.planes;
if (bitcount == 24)
dib = FreeImage_Allocate(width, height, bitcount, FI_RGBA_RED_MASK, FI_RGBA_GREEN_MASK, FI_RGBA_BLUE_MASK);
else
dib = FreeImage_Allocate(width, height, bitcount);
// if the dib couldn't be allocated, throw an error
if (!dib)
throw "DIB allocation failed";
// metrics handling code
BITMAPINFOHEADER *pInfoHeader = FreeImage_GetInfoHeader(dib);
pInfoHeader->biXPelsPerMeter = (int) (((float)header.hdpi) / 0.0254000 + 0.5);
pInfoHeader->biYPelsPerMeter = (int) (((float)header.vdpi) / 0.0254000 + 0.5);
// Set up the palette if needed
// ----------------------------
switch(bitcount) {
case 1:
{
pal = FreeImage_GetPalette(dib);
pal[0].rgbRed = pal[0].rgbGreen = pal[0].rgbBlue = 0;
pal[1].rgbRed = pal[1].rgbGreen = pal[1].rgbBlue = 255;
break;
}
case 4:
{
pal = FreeImage_GetPalette(dib);
BYTE *pColormap = &header.color_map[0];
for (int i = 0; i < 16; i++) {
pal[i].rgbRed = pColormap[0];
pal[i].rgbGreen = pColormap[1];
pal[i].rgbBlue = pColormap[2];
pColormap += 3;
}
break;
}
case 8:
{
BYTE palette_id;
io->seek_proc(handle, -769L, SEEK_END);
io->read_proc(&palette_id, 1, 1, handle);
if (palette_id == 0x0C) {
BYTE *cmap = (BYTE*)malloc(768 * sizeof(BYTE));
io->read_proc(cmap, 768, 1, handle);
pal = FreeImage_GetPalette(dib);
BYTE *pColormap = &cmap[0];
for(int i = 0; i < 256; i++) {
pal[i].rgbRed = pColormap[0];
pal[i].rgbGreen = pColormap[1];
pal[i].rgbBlue = pColormap[2];
pColormap += 3;
}
free(cmap);
}
// wrong palette ID, perhaps a gray scale is needed ?
else if (header.palette_info == 2) {
pal = FreeImage_GetPalette(dib);
for(int i = 0; i < 256; i++) {
pal[i].rgbRed = (BYTE)i;
pal[i].rgbGreen = (BYTE)i;
pal[i].rgbBlue = (BYTE)i;
}
}
io->seek_proc(handle, (long)sizeof(PCXHEADER), SEEK_SET);
}
break;
}
// calculate the line length for the PCX and the DIB
linelength = header.bytes_per_line * header.planes;
pitch = (WORD)FreeImage_GetPitch(dib);
// run-length encoding ?
rle = (header.encoding == 1) ? TRUE : FALSE;
// load image data
// ---------------
line = new BYTE[linelength];
bits = FreeImage_GetScanLine(dib, height - 1);
ReadBuf = new BYTE[IO_BUF_SIZE];
int ReadPos = IO_BUF_SIZE;
if ((header.planes == 1) && ((header.bpp == 1) || (header.bpp == 8))) {
BYTE skip;
WORD written;
for (WORD y = 0; y < height; y++) {
written = readline(*io, handle, bits, linelength, rle, ReadBuf, &ReadPos);
// skip trailing garbage at the end of the scanline
for (int count = written; count < linelength; count++) {
if (ReadPos < IO_BUF_SIZE) {
ReadPos++;
} else {
io->read_proc(&skip, sizeof(BYTE), 1, handle);
}
}
bits -= pitch;
}
} else if ((header.planes == 4) && (header.bpp == 1)) {
BYTE bit, mask, skip;
WORD index;
BYTE *buffer;
WORD x, y, written;
buffer = new BYTE[width];
for (y = 0; y < height; y++) {
written = readline(*io, handle, line, linelength, rle, ReadBuf, &ReadPos);
// build a nibble using the 4 planes
memset(buffer, 0, width * sizeof(BYTE));
for(int plane = 0; plane < 4; plane++) {
bit = (BYTE)(1 << plane);
for (x = 0; x < width; x++) {
index = (WORD)((x / 8) + plane * header.bytes_per_line);
mask = (BYTE)(0x80 >> (x & 0x07));
buffer[x] |= (line[index] & mask) ? bit : 0;
}
}
// then write the DIB row
for (x = 0; x < width / 2; x++)
bits[x] = (buffer[2*x] << 4) | buffer[2*x+1];
// skip trailing garbage at the end of the scanline
for (int count = written; count < linelength; count++) {
if (ReadPos < IO_BUF_SIZE) {
ReadPos++;
} else {
io->read_proc(&skip, sizeof(BYTE), 1, handle);
}
}
bits -= pitch;
}
delete [] buffer;
} else if((header.planes == 3) && (header.bpp == 8)) {
BYTE *pline;
for (WORD y = 0; y < height; y++) {
readline(*io, handle, line, linelength, rle, ReadBuf, &ReadPos);
// convert the plane stream to BGR (RRRRGGGGBBBB -> BGRBGRBGRBGR)
// well, now with the FI_RGBA_x macros, on BIGENDIAN we convert to RGB
pline = line;
WORD x;
for (x = 0; x < width; x++)
bits[x * 3 + FI_RGBA_RED] = pline[x];
pline += header.bytes_per_line;
for (x = 0; x < width; x++)
bits[x * 3 + FI_RGBA_GREEN] = pline[x];
pline += header.bytes_per_line;
for (x = 0; x < width; x++)
bits[x * 3 + FI_RGBA_BLUE] = pline[x];
pline += header.bytes_per_line;
bits -= pitch;
}
} else {
throw "Unable to read this file";
}
delete [] line;
delete [] ReadBuf;
return dib;
} catch (const char *text) {
// free allocated memory
if (dib != NULL)
FreeImage_Unload(dib);
if (line != NULL)
delete [] line;
if (ReadBuf != NULL)
delete [] ReadBuf;
FreeImage_OutputMessageProc(s_format_id, text);
return NULL;
}
}
return NULL;
}
// ==========================================================
// Init
// ==========================================================
/*!
Initialises the plugin. The first parameter (Plugin *plugin)
contains a pointer to a pre-allocated Plugin structure
wherein pointers to the available plugin functions
has to be stored. The second parameter (int format_id) is an identification
number that the plugin may use to show plugin specific warning messages
or other information to the user. The plugin number
is generated by FreeImage and can differ everytime the plugin is
initialised.
If you want to create your own plugin you have to take some
rules into account. Plugin functions have to be compiled
__stdcall using the multithreaded c runtime libraries. Throwing
exceptions in plugin functions is allowed, as long as those exceptions
are being caught inside the same plugin. It is forbidden for a plugin
function to directly call FreeImage functions or to allocate memory
and pass it to the main DLL. Exception to this rule is the special file data
block that may be allocated the Open function. Allocating a FIBITMAP inside a
plugin can be using the function allocate_proc in the FreeImage structure,
which will allocate the memory using the DLL's c runtime library.
*/
void DLL_CALLCONV
InitPCX(Plugin *plugin, int format_id) {
s_format_id = format_id;
plugin->format_proc = Format;
plugin->description_proc = Description;
plugin->extension_proc = Extension;
plugin->regexpr_proc = RegExpr;
plugin->open_proc = NULL;
plugin->close_proc = NULL;
plugin->pagecount_proc = NULL;
plugin->pagecapability_proc = NULL;
plugin->load_proc = Load;
plugin->save_proc = NULL;
plugin->validate_proc = Validate;
plugin->mime_proc = MimeType;
plugin->supports_export_bpp_proc = SupportsExportDepth;
plugin->supports_export_type_proc = SupportsExportType;
plugin->supports_icc_profiles_proc = NULL;
}
|