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 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712
|
// ==========================================================
// ICO Loader and Writer
//
// Design and implementation by
// - Floris van den Berg (flvdberg@wxs.nl)
// - Herv Drolon (drolon@infonie.fr)
//
// 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
// ----------------------------------------------------------
#ifdef _WIN32
#pragma pack(push, 1)
#else
#pragma pack(1)
#endif
// These next two structs represent how the icon information is stored
// in an ICO file.
typedef struct tagICONHEADER {
WORD idReserved; // reserved
WORD idType; // resource type (1 for icons)
WORD idCount; // how many images?
} ICONHEADER;
typedef struct tagICONDIRECTORYENTRY {
BYTE bWidth; // width of the image
BYTE bHeight; // height of the image (times 2)
BYTE bColorCount; // number of colors in image (0 if >=8bpp)
BYTE bReserved; // reserved
WORD wPlanes; // color Planes
WORD wBitCount; // bits per pixel
DWORD dwBytesInRes; // how many bytes in this resource?
DWORD dwImageOffset; // where in the file is this image
} ICONDIRENTRY;
#ifdef _WIN32
#pragma pack(pop)
#else
#pragma pack()
#endif
// ==========================================================
// Static helpers
// ==========================================================
/** How wide, in bytes, would this many bits be, DWORD aligned ?
*/
static int
WidthBytes(int bits) {
return ((((bits) + 31)>>5)<<2);
}
/** Calculates the size of a single icon image
@return Returns the size for that image
*/
static DWORD
CalculateImageSize(FIBITMAP* icon_dib) {
DWORD dwNumBytes = 0;
BITMAPINFOHEADER *bmih = FreeImage_GetInfoHeader(icon_dib);
int colors = FreeImage_GetColorsUsed(icon_dib);
int width = bmih->biWidth;
int height = bmih->biHeight;
int pitch = FreeImage_GetPitch(icon_dib);
dwNumBytes = sizeof( BITMAPINFOHEADER ); // header
dwNumBytes += colors * sizeof(RGBQUAD); // palette
dwNumBytes += height * pitch; // XOR mask
dwNumBytes += height * WidthBytes(width); // AND mask
return dwNumBytes;
}
/** Calculates the file offset for an icon image
@return Returns the file offset for that image
*/
static DWORD
CalculateImageOffset(std::vector<FIBITMAP*>& vPages, int nIndex ) {
DWORD dwSize;
// calculate the ICO header size
dwSize = sizeof(ICONHEADER);
// add the ICONDIRENTRY's
dwSize += vPages.size() * sizeof(ICONDIRENTRY);
// add the sizes of the previous images
for(int k = 0; k < nIndex; k++) {
FIBITMAP *icon_dib = (FIBITMAP*)vPages[k];
dwSize += CalculateImageSize(icon_dib);
}
return dwSize;
}
#ifdef FREEIMAGE_BIGENDIAN
static void
SwapInfoHeader(BITMAPINFOHEADER *header) {
SwapLong(&header->biSize);
SwapLong((DWORD *)&header->biWidth);
SwapLong((DWORD *)&header->biHeight);
SwapShort(&header->biPlanes);
SwapShort(&header->biBitCount);
SwapLong(&header->biCompression);
SwapLong(&header->biSizeImage);
SwapLong((DWORD *)&header->biXPelsPerMeter);
SwapLong((DWORD *)&header->biYPelsPerMeter);
SwapLong(&header->biClrUsed);
SwapLong(&header->biClrImportant);
}
static void
SwapIconHeader(ICONHEADER *header) {
SwapShort(&header->idReserved);
SwapShort(&header->idType);
SwapShort(&header->idCount);
}
static void
SwapIconDirEntries(ICONDIRENTRY *ent, int num) {
while(num) {
SwapShort(&ent->wPlanes);
SwapShort(&ent->wBitCount);
SwapLong(&ent->dwBytesInRes);
SwapLong(&ent->dwImageOffset);
num--;
ent++;
}
}
#endif
// ==========================================================
// Plugin Interface
// ==========================================================
static int s_format_id;
// ==========================================================
// Plugin Implementation
// ==========================================================
static const char * DLL_CALLCONV
Format() {
return "ICO";
}
static const char * DLL_CALLCONV
Description() {
return "Windows Icon";
}
static const char * DLL_CALLCONV
Extension() {
return "ico";
}
static const char * DLL_CALLCONV
RegExpr() {
return NULL;
}
static const char * DLL_CALLCONV
MimeType() {
return "image/x-icon";
}
static BOOL DLL_CALLCONV
Validate(FreeImageIO *io, fi_handle handle) {
ICONHEADER icon_header;
io->read_proc(&icon_header, sizeof(ICONHEADER), 1, handle);
#ifdef FREEIMAGE_BIGENDIAN
SwapIconHeader(&icon_header);
#endif
return ((icon_header.idReserved == 0) && (icon_header.idType == 1) && (icon_header.idCount > 0));
}
static BOOL DLL_CALLCONV
SupportsExportDepth(int depth) {
return (
(depth == 1) ||
(depth == 4) ||
(depth == 8) ||
(depth == 16) ||
(depth == 24) ||
(depth == 32)
);
}
static BOOL DLL_CALLCONV
SupportsExportType(FREE_IMAGE_TYPE type) {
return (type == FIT_BITMAP) ? TRUE : FALSE;
}
// ----------------------------------------------------------
static void * DLL_CALLCONV
Open(FreeImageIO *io, fi_handle handle, BOOL read) {
ICONHEADER *lpIH = NULL;
// Allocate memory for the header structure
if((lpIH = (ICONHEADER*)malloc( sizeof(ICONHEADER) )) == NULL)
return NULL;
if (read) {
// Read in the header
io->read_proc(lpIH, 1, sizeof(ICONHEADER), handle);
#ifdef FREEIMAGE_BIGENDIAN
SwapIconHeader(lpIH);
#endif
if(!(lpIH->idReserved == 0) || !(lpIH->idType == 1)) {
// Not an ICO file
free(lpIH);
return NULL;
}
}
else {
// Fill the header
lpIH->idReserved = 0;
lpIH->idType = 1;
lpIH->idCount = 0;
}
return lpIH;
}
static void DLL_CALLCONV
Close(FreeImageIO *io, fi_handle handle, void *data) {
// free the header structure
ICONHEADER *lpIH = (ICONHEADER*)data;
free(lpIH);
}
// ----------------------------------------------------------
static int DLL_CALLCONV
PageCount(FreeImageIO *io, fi_handle handle, void *data) {
ICONHEADER *lpIH = (ICONHEADER*)data;
if(lpIH) {
return lpIH->idCount;
}
return 1;
}
// ----------------------------------------------------------
static FIBITMAP * DLL_CALLCONV
Load(FreeImageIO *io, fi_handle handle, int page, int flags, void *data) {
if (page == -1)
page = 0;
if (handle != NULL) {
FIBITMAP *dib;
// get the icon header
ICONHEADER *icon_header = (ICONHEADER*)data;
if (icon_header) {
// load the icon descriptions
ICONDIRENTRY *icon_list = (ICONDIRENTRY*)malloc(icon_header->idCount * sizeof(ICONDIRENTRY));
io->seek_proc(handle, sizeof(ICONHEADER), SEEK_SET);
io->read_proc(icon_list, icon_header->idCount * sizeof(ICONDIRENTRY), 1, handle);
#ifdef FREEIMAGE_BIGENDIAN
SwapIconDirEntries(icon_list, icon_header->idCount);
#endif
// load the requested icon
if (page < icon_header->idCount) {
// seek to the start of the bitmap data for the icon
io->seek_proc(handle, 0, SEEK_SET);
io->seek_proc(handle, icon_list[page].dwImageOffset, SEEK_CUR);
free(icon_list);
// load the BITMAPINFOHEADER
BITMAPINFOHEADER bmih;
io->read_proc(&bmih, sizeof(BITMAPINFOHEADER), 1, handle);
#ifdef FREEIMAGE_BIGENDIAN
SwapInfoHeader(&bmih);
#endif
// allocate the bitmap
int width = bmih.biWidth;
int height = bmih.biHeight / 2; // height == xor + and mask
int bit_count = bmih.biBitCount;
int line = CalculateLine(width, bit_count);
int pitch = CalculatePitch(line);
// allocate memory for one icon
dib = FreeImage_Allocate(width, height, bit_count);
if (dib == NULL) {
return NULL;
}
if( bmih.biBitCount <= 8 ) {
// read the palette data
io->read_proc(FreeImage_GetPalette(dib), CalculateUsedPaletteEntries(bit_count) * sizeof(RGBQUAD), 1, handle);
#if FREEIMAGE_COLORORDER == FREEIMAGE_COLORORDER_RGB
RGBQUAD *pal = FreeImage_GetPalette(dib);
for(int i = 0; i < CalculateUsedPaletteEntries(bit_count); i++) {
INPLACESWAP(pal[i].rgbRed, pal[i].rgbBlue);
}
#endif
}
// read the icon
io->read_proc(FreeImage_GetBits(dib), height * pitch, 1, handle);
#ifdef FREEIMAGE_BIGENDIAN
if (bit_count == 16) {
for(int y = 0; y < height; y++) {
WORD *pixel = (WORD *)FreeImage_GetScanLine(dib, y);
for(int x = 0; x < width; x++) {
SwapShort(pixel);
pixel++;
}
}
}
#endif
#if FREEIMAGE_COLORORDER == FREEIMAGE_COLORORDER_RGB
if (bit_count == 24 || bit_count == 32) {
for(int y = 0; y < height; y++) {
BYTE *pixel = FreeImage_GetScanLine(dib, y);
for(int x = 0; x < width; x++) {
INPLACESWAP(pixel[0], pixel[2]);
pixel += (bit_count>>3);
}
}
}
#endif
// bitmap has been loaded successfully!
// convert to 32bpp and generate an alpha channel
if((flags & ICO_MAKEALPHA) == ICO_MAKEALPHA) {
FIBITMAP *dib32 = FreeImage_ConvertTo32Bits(dib);
FreeImage_Unload(dib);
if (dib32 == NULL) {
return NULL;
}
int width_and = WidthBytes(width);
BYTE *line_and = (BYTE *)malloc(width_and);
if( line_and == NULL ) {
FreeImage_Unload(dib32);
return NULL;
}
//loop through each line of the AND-mask generating the alpha channel, invert XOR-mask
for(int y = 0; y < height; y++) {
RGBQUAD *quad = (RGBQUAD *)FreeImage_GetScanLine(dib32, y);
io->read_proc(line_and, width_and, 1, handle);
for(int x = 0; x < width; x++) {
quad->rgbReserved = (line_and[x>>3] & (0x80 >> (x & 0x07))) != 0 ? 0 : 0xFF;
if( quad->rgbReserved == 0 ) {
quad->rgbBlue ^= 0xFF;
quad->rgbGreen ^= 0xFF;
quad->rgbRed ^= 0xFF;
}
quad++;
}
}
free(line_and);
return dib32;
}
return (FIBITMAP *)dib;
} else {
free(icon_list);
FreeImage_OutputMessageProc(s_format_id, "Page doesn't exist");
}
} else {
FreeImage_OutputMessageProc(s_format_id, "File is not an ICO file");
}
}
return NULL;
}
static BOOL DLL_CALLCONV
Save(FreeImageIO *io, FIBITMAP *dib, fi_handle handle, int page, int flags, void *data) {
int k;
if(dib) {
// check format limits
int w = FreeImage_GetWidth(dib);
int h = FreeImage_GetHeight(dib);
if((w < 16) || (w > 128) || (h < 16) || (h > 128)) {
FreeImage_OutputMessageProc(s_format_id, "Unsupported icon size");
return FALSE;
}
} else {
return FALSE;
}
if (page == -1)
page = 0;
// get the icon header
ICONHEADER *icon_header = (ICONHEADER*)data;
if(icon_header) {
std::vector<FIBITMAP*> vPages;
FIBITMAP *icon_dib = NULL;
// load all icons
for(k = 0; k < icon_header->idCount; k++) {
icon_dib = Load(io, handle, k, flags, data);
vPages.push_back(icon_dib);
}
// add the page
icon_dib = FreeImage_Clone(dib);
vPages.push_back(icon_dib);
icon_header->idCount++;
// write the header
io->seek_proc(handle, 0, SEEK_SET);
#ifdef FREEIMAGE_BIGENDIAN
SwapIconHeader(icon_header);
#endif
io->write_proc(icon_header, sizeof(ICONHEADER), 1, handle);
#ifdef FREEIMAGE_BIGENDIAN
SwapIconHeader(icon_header);
#endif
// write all icons
// ...
// save the icon descriptions
ICONDIRENTRY *icon_list = (ICONDIRENTRY *)malloc(icon_header->idCount * sizeof(ICONDIRENTRY));
memset(icon_list, 0, icon_header->idCount * sizeof(ICONDIRENTRY));
BITMAPINFOHEADER *bmih;
for(k = 0; k < icon_header->idCount; k++) {
icon_dib = (FIBITMAP*)vPages[k];
// convert internal format to ICONDIRENTRY
bmih = FreeImage_GetInfoHeader(icon_dib);
icon_list[k].bWidth = (BYTE)bmih->biWidth;
icon_list[k].bHeight = (BYTE)bmih->biHeight;
icon_list[k].bReserved = 0;
icon_list[k].wPlanes = bmih->biPlanes;
icon_list[k].wBitCount = bmih->biBitCount;
if( (icon_list[k].wPlanes * icon_list[k].wBitCount) >= 8 ) {
icon_list[k].bColorCount = 0;
} else {
icon_list[k].bColorCount = (BYTE)(1 << (icon_list[k].wPlanes * icon_list[k].wBitCount));
}
icon_list[k].dwBytesInRes = CalculateImageSize(icon_dib);
icon_list[k].dwImageOffset = CalculateImageOffset(vPages, k);
}
#ifdef FREEIMAGE_BIGENDIAN
SwapIconDirEntries(icon_list, icon_header->idCount);
#endif
io->write_proc(icon_list, sizeof(ICONDIRENTRY) * icon_header->idCount, 1, handle);
free(icon_list);
// write the image bits for each image
for(k = 0; k < icon_header->idCount; k++) {
icon_dib = (FIBITMAP*)vPages[k];
// write the BITMAPINFOHEADER
bmih = FreeImage_GetInfoHeader(icon_dib);
bmih->biHeight *= 2; // height == xor + and mask
#ifdef FREEIMAGE_BIGENDIAN
SwapInfoHeader(bmih);
#endif
io->write_proc(bmih, sizeof(BITMAPINFOHEADER), 1, handle);
#ifdef FREEIMAGE_BIGENDIAN
SwapInfoHeader(bmih);
#endif
bmih->biHeight /= 2;
// write the palette data
if (FreeImage_GetPalette(icon_dib) != NULL) {
RGBQUAD *pal = FreeImage_GetPalette(icon_dib);
FILE_BGRA bgra;
for(unsigned i = 0; i < FreeImage_GetColorsUsed(icon_dib); i++) {
bgra.b = pal[i].rgbBlue;
bgra.g = pal[i].rgbGreen;
bgra.r = pal[i].rgbRed;
bgra.a = pal[i].rgbReserved;
io->write_proc(&bgra, sizeof(FILE_BGRA), 1, handle);
}
}
// write the bits
int width = bmih->biWidth;
int height = bmih->biHeight;
int bit_count = bmih->biBitCount;
int line = CalculateLine(width, bit_count);
int pitch = CalculatePitch(line);
int size_xor = height * pitch;
int size_and = height * WidthBytes(width);
// XOR mask
#ifdef FREEIMAGE_BIGENDIAN
if (bit_count == 16) {
WORD pixel;
for(int y = 0; y < FreeImage_GetHeight(icon_dib); y++) {
BYTE *line = FreeImage_GetScanLine(icon_dib, y);
for(int x = 0; x < FreeImage_GetWidth(icon_dib); x++) {
pixel = ((WORD *)line)[x];
SwapShort(&pixel);
if (io->write_proc(&pixel, sizeof(WORD), 1, handle) != 1)
return FALSE;
}
}
} else
#endif
#if FREEIMAGE_COLORORDER == FREEIMAGE_COLORORDER_RGB
if (bit_count == 24) {
FILE_BGR bgr;
for(int y = 0; y < FreeImage_GetHeight(icon_dib); y++) {
BYTE *line = FreeImage_GetScanLine(icon_dib, y);
for(int x = 0; x < FreeImage_GetWidth(icon_dib); x++) {
RGBTRIPLE *triple = ((RGBTRIPLE *)line)+x;
bgr.b = triple->rgbtBlue;
bgr.g = triple->rgbtGreen;
bgr.r = triple->rgbtRed;
if (io->write_proc(&bgr, sizeof(FILE_BGR), 1, handle) != 1)
return FALSE;
}
}
} else if (bit_count == 32) {
FILE_BGRA bgra;
for(int y = 0; y < FreeImage_GetHeight(icon_dib); y++) {
BYTE *line = FreeImage_GetScanLine(icon_dib, y);
for(int x = 0; x < FreeImage_GetWidth(icon_dib); x++) {
RGBQUAD *quad = ((RGBQUAD *)line)+x;
bgra.b = quad->rgbBlue;
bgra.g = quad->rgbGreen;
bgra.r = quad->rgbRed;
bgra.a = quad->rgbReserved;
if (io->write_proc(&bgra, sizeof(FILE_BGRA), 1, handle) != 1)
return FALSE;
}
}
} else
#endif
#if defined(FREEIMAGE_BIGENDIAN) || FREEIMAGE_COLORORDER == FREEIMAGE_COLORORDER_RGB
{
#endif
BYTE *xor_mask = FreeImage_GetBits(icon_dib);
io->write_proc(xor_mask, size_xor, 1, handle);
#if defined(FREEIMAGE_BIGENDIAN) || FREEIMAGE_COLORORDER == FREEIMAGE_COLORORDER_RGB
}
#endif
// AND mask
BYTE *and_mask = (BYTE*)malloc(size_and);
if(FreeImage_IsTransparent(dib)) {
if(bit_count == 32) {
// create the AND mask from the alpha channel
int width_and = WidthBytes(width);
BYTE *and_bits = and_mask;
// clear the mask
memset(and_mask, 0, size_and);
for(int y = 0; y < height; y++) {
RGBQUAD *bits = (RGBQUAD*)FreeImage_GetScanLine(dib, y);
for(int x = 0; x < width; x++) {
if(bits[x].rgbReserved != 0xFF) {
// set any transparent color to full transparency
and_bits[x >> 3] |= (0x80 >> (x & 0x7));
}
}
and_bits += width_and;
}
}
else if(bit_count <= 8) {
// create the AND mask from the transparency table
BYTE *trns = FreeImage_GetTransparencyTable(dib);
int width_and = WidthBytes(width);
BYTE *and_bits = and_mask;
// clear the mask
memset(and_mask, 0, size_and);
switch(FreeImage_GetBPP(dib)) {
case 1:
{
for(int y = 0; y < height; y++) {
BYTE *bits = (BYTE*)FreeImage_GetScanLine(dib, y);
for(int x = 0; x < width; x++) {
// get pixel at (x, y)
BYTE index = (bits[x >> 3] & (0x80 >> (x & 0x07))) != 0;
if(trns[index] != 0xFF) {
// set any transparent color to full transparency
and_bits[x >> 3] |= (0x80 >> (x & 0x7));
}
}
and_bits += width_and;
}
}
break;
case 4:
{
for(int y = 0; y < height; y++) {
BYTE *bits = (BYTE*)FreeImage_GetScanLine(dib, y);
for(int x = 0; x < width; x++) {
// get pixel at (x, y)
BYTE shift = (BYTE)((1 - x % 2) << 2);
BYTE index = (bits[x >> 1] & (0x0F << shift)) >> shift;
if(trns[index] != 0xFF) {
// set any transparent color to full transparency
and_bits[x >> 3] |= (0x80 >> (x & 0x7));
}
}
and_bits += width_and;
}
}
break;
case 8:
{
for(int y = 0; y < height; y++) {
BYTE *bits = (BYTE*)FreeImage_GetScanLine(dib, y);
for(int x = 0; x < width; x++) {
// get pixel at (x, y)
BYTE index = bits[x];
if(trns[index] != 0xFF) {
// set any transparent color to full transparency
and_bits[x >> 3] |= (0x80 >> (x & 0x7));
}
}
and_bits += width_and;
}
}
break;
}
}
}
else {
// empty AND mask
memset(and_mask, 0, size_and);
}
io->write_proc(and_mask, size_and, 1, handle);
free(and_mask);
}
// free the vector class
for(k = 0; k < icon_header->idCount; k++) {
icon_dib = (FIBITMAP*)vPages[k];
FreeImage_Unload(icon_dib);
}
return TRUE;
}
return FALSE;
}
// ==========================================================
// Init
// ==========================================================
void DLL_CALLCONV
InitICO(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 = Open;
plugin->close_proc = Close;
plugin->pagecount_proc = PageCount;
plugin->pagecapability_proc = NULL;
plugin->load_proc = Load;
plugin->save_proc = Save;
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;
}
|