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 713 714 715 716 717
|
/* RgbaImage.c : RGBA image handling routines
//
Written and Copyright (C) 1994-1997 by Michael J. Gourlay
This file is part of Xmorph.
Xmorph is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
Xmorph is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Xmorph; see the file LICENSE. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#include <stdio.h>
#include "my_malloc.h"
#include "tga.h"
#include "RgbaImage.h"
#define MAX(x,y) ((x)>(y) ? (x) : (y))
/* NAME
// rgbaImageInit: initialize members of an RgbaImage
*/
static void
rgbaImageInit(RgbaImageT *this)
{
this->nrows = 0;
this->ncols = 0;
this->compressed = 0;
this->pixel_size = 0;
this->color_mapped = 0;
this->type = 0;
this->ri = NULL;
this->gi = NULL;
this->bi = NULL;
this->ai = NULL;
}
/* NAME
// rgbaImageNew: Allocate and initialize an RgbaImageT instance
//
//
// DESCRIPTION
// An RgbaImage is an image that stores red, green, blue, and opacity
// information as arrays of bytes, where each byte stores a pixel
// value. The key feature of the storage scheme is that each channel
// is stored as a contiguous array, rather than storing the image
// channels data interleaved. The reason why storing image data as
// contiguous channels is that some image processing routines are
// designed to operate on a single channel only, or on monochrome
// images. By storing full-color images as contiguous arrays of single
// channels, we can use one-channel image processing routines. In
// particular, the warp_image routine expects single channels and that
// is what we want to use.
*/
RgbaImageT *
rgbaImageNew(void)
{
RgbaImageT *rgba_image = MY_CALLOC(1, RgbaImageT);
if(NULL == rgba_image) {
return NULL;
}
rgbaImageInit(rgba_image);
return rgba_image;
}
/* NAME
// rgbaImageDelete: Delete an RgbaImageT instance
//
//
// NOTES
// rgbaImageDelete does NOT free the channel arrays. The channel
// arrays should be freed before calling rgbaImageDelete.
//
//
// SEE ALSO
// rgbaImageFree, rgbaImageNew, rgbaImageAlloc
*/
void
rgbaImageDelete(RgbaImageT *this)
{
#if DEBUG >= 1
printf("rgbaImageDelete: %p\n", this);
#endif
FREE(this);
}
/* NAME
// rgbaImageFree: free memory of the RgbaImage channels.
//
//
// NOTES
// Memory for the RgbaImageT instance is not freed here.
//
// The image channel memory is assumed to be contiguous, so that only
// the "ri" channel is actually called with "free".
//
//
// SEE ALSO
// rgbaImageAlloc, rgbaImageDelete
*/
void
rgbaImageFree(RgbaImageT *this)
{
if(this->ri != NULL) {
FREE(this->ri);
this->ri = NULL;
this->gi = NULL;
this->bi = NULL;
this->ai = NULL;
this->nrows = 0;
this->ncols = 0;
}
}
/* NAME
// rgbaImageAlloc: allocate memory for the RgbaImage channels
//
//
// ARGUMENTS
// this (in/out): pointer to RgbaImage.
// The ncols,nrows,ri,gi,bi,ai members are set.
//
// nx (in): image width. ncols is set to this.
//
// ny (in): image height. nrows is set to this.
//
//
// DESCRIPTION
// Use only one allocation to ensure that the image data is
// contiguous. This makes it easier to use other image format
// schemes which have parameters such as "pitch" which is the address
// difference between two vertically adjacent pixels, and "offset[3]"
// which has the offsets from the address of a pixel to the addresses
// of the bytes containing red, green, and blue components. I.e.
// some formats can use either XY interleaving or Z stacking, just by
// altering these parameters.
//
// Only one "alloc" is done for all channels. This is important to
// know when freeing the memory.
//
//
// RETURN VALUES
// Return -1 if failed, 0 otherwize.
//
// If any of the image channels are non-NULL on input, a diagnostic
// message is displayed.
//
// SEE ALSO
// rgbaImageFree
*/
int
rgbaImageAlloc(RgbaImageT *this, const int nx, const int ny)
{
/* see whether there was un-freed memory here before */
if( (this->ri != NULL) || (this->gi != NULL)
|| (this->bi != NULL) || (this->ai != NULL) )
{
fprintf(stderr, "rgbaImageAlloc: warning: "
"allocating over un-freed rgbaImage\n");
}
this->ncols = nx;
this->nrows = ny;
/* Make sure the image size is not zero */
if((this->ncols * this->nrows) == 0) {
fprintf(stderr, "rgbaImageAlloc: warning: zero size\n");
}
if((this->ri=MY_CALLOC(this->ncols * this->nrows * 4, unsigned char)) == NULL)
{
fprintf(stderr, "rgbaImageAlloc: Bad Alloc\n");
return -1;
}
/* Find the beginning address for each of the image channels */
this->gi = & ( this->ri[this->ncols * this->nrows * 1] );
this->bi = & ( this->ri[this->ncols * this->nrows * 2] );
this->ai = & ( this->ri[this->ncols * this->nrows * 3] );
return 0 ;
}
/* NAME
// rgbaImageDissolve: Dissolve two images
//
//
// ARGUMENTS
// this (out): tween image. Arrays allocated here.
//
// siP (in): "source" image.
//
// diP (in): "destination" image.
// If diP is NULL then it is as if dest_image is black.
//
// dissolve (in): dissolve parameter
// where out = (1-dissolve) * source_image + dissolve * dest_image
// e.g. if dissolve==0, out=source_image. If dissolve==1, out=dest_image.
//
*/
int
rgbaImageDissolve(RgbaImageT *this, const RgbaImageT *siP, const RgbaImageT *diP, float dissolve)
{
int nx; /* image x-size */
int xi; /* loop image x-index */
int yi; /* loop image y-index */
int rsi; /* siP image red channel pixel value */
int gsi; /* siP image green channel pixel value */
int bsi; /* siP image blue channel pixel value */
int asi; /* siP image opacity channel pixel values */
int rdi; /* diP image red channel pixel value */
int gdi; /* diP image green channel pixel value */
int bdi; /* diP image blue channel pixel value */
int adi; /* diP image opacity channel pixel value */
/* See whether diP image exists. */
if(diP != NULL) {
/* Make sure siP and diP images are the same size */
if((siP->nrows != diP->nrows) || (siP->ncols != diP->ncols)) {
fprintf(stderr, "rgbaImageDissolve: input image size mismatch\n");
return -1;
}
if(siP->compressed || diP->compressed)
this->compressed = 1;
this->pixel_size = MAX(siP->pixel_size, diP->pixel_size);
if(siP->color_mapped && diP->color_mapped)
this->color_mapped = 1;
} else {
if(siP->compressed)
this->compressed = 1;
this->pixel_size = siP->pixel_size;
if(siP->color_mapped)
this->color_mapped = 1;
}
/* Initialize the dissolved image */
/* Note that this "undoes" the above code.
// One wonders why I did it this way.
*/
nx = siP->ncols;
this->compressed = this->color_mapped = 0;
this->pixel_size = 32;
/* Allocate space for dissolved image data */
#if DEBUG >= 2
printf("rgbaImageDissolve: allocating\n");
#endif
if(rgbaImageAlloc(this, siP->ncols, siP->nrows))
return -1;
/* Dissolve the two images according to the dissolve parameter */
for(yi=0; yi < this->nrows; yi++) {
for(xi=0; xi < nx; xi++) {
/* Compute contribution from siP image */
rsi = (1.0-dissolve) * siP->ri[yi * nx + xi];
gsi = (1.0-dissolve) * siP->gi[yi * nx + xi];
bsi = (1.0-dissolve) * siP->bi[yi * nx + xi];
asi = (1.0-dissolve) * siP->ai[yi * nx + xi];
/* Compute contribution from diP image */
if((diP!=NULL) && (xi<diP->ncols) && (yi < diP->nrows)) {
rdi = dissolve * diP->ri[yi * diP->ncols + xi];
gdi = dissolve * diP->gi[yi * diP->ncols + xi];
bdi = dissolve * diP->bi[yi * diP->ncols + xi];
adi = dissolve * diP->ai[yi * diP->ncols + xi];
} else {
/* If there is no diP image, assume a black image instead */
rdi = 0;
gdi = 0;
bdi = 0;
adi = 0;
}
/* Compute the dissolved image pixel values */
this->ri[yi*nx+xi] = (int)(rsi + rdi + 0.5);
this->gi[yi*nx+xi] = (int)(gsi + gdi + 0.5);
this->bi[yi*nx+xi] = (int)(bsi + bdi + 0.5);
this->ai[yi*nx+xi] = (int)(asi + adi + 0.5);
}
}
return 0;
}
/* NAME
// rgbaImageRead: load image into memory.
//
//
// ARGUMENTS
// this (in/out): pointer to RgbaImage
//
// filename (in): filename
//
//
// DESCRIPTION
// Frees old image channel space.
// Allocates new image channel space.
*/
int
rgbaImageRead(RgbaImageT *this, const char *filename)
{
int tga_return;
tga_hdr_t tga_hdr;
FILE *infP=NULL;
/* Open the input file for binary reading */
if(filename!=NULL && (infP=fopen(filename, "rb"))==NULL) {
fprintf(stderr, "rgbaImageRead: could not open '%s' for input\n", filename);
return -1;
}
/* Load the image header:
// This will set 'this' members such as ncols, nrows, etc.
*/
/* Targa */
if( (tga_return = tgaHeaderRead(&tga_hdr, this, infP)) ) {
fprintf(stderr, "tgaHeaderRead returned %i\n", tga_return);
return tga_return;
}
/* Free the memory for the previous image planes.
// This must be done AFTER the load attempt, because if the load
// fails, we want to keep the original image.
*/
{
int ncols = this->ncols; /* store geometry set by load_header */
int nrows = this->nrows; /* store geometry set by load_header*/
rgbaImageFree(this); /* this sets ncols = nrows = 0 */
this->ncols = ncols; /* retrieve geometry */
this->nrows = nrows; /* retrieve geometry */
}
/* Allocate memory for the new image channels.
// Note the unusual use of passing in this->ncols and this->nrows,
// even though they are already set to the correct value. This is
// because tgaHeaderRead sets those values to the size of the image
// about to be read in.
*/
if(rgbaImageAlloc(this, this->ncols, this->nrows))
return -1;
/* Load the new image */
/* Targa */
tgaRead(&tga_hdr, this, infP);
/* Close the input file */
fclose(infP);
return 0;
}
/* NAME
// rgbaImageWrite: dissolve 2 images and save dissolved image to file
//
//
// ARGUMENTS
// filename (in): file name to save image to
//
// siP (in): "source" image pointer
//
// diP (in): "destination" image pointer.
// If diP is NULL then it is as if dest_image is black.
//
// dissolve (in): dissolve parameter
// where out = (1-dissolve) * source_image + dissolve * dest_image
// e.g. if dissolve==0, out=source_image. If dissolve==1, out=dest_image.
//
//
// DESCRIPTION
// Dimensions of the output image are the same as the source_image.
//
// "source" and "destination" do NOT refer to the disk space where the
// image is being written. They refer to the starting and finishing
// images in the dissolve.
*/
int
rgbaImageWrite(const char *filename, const RgbaImageT *siP, const RgbaImageT *diP, float dissolve)
{
RgbaImageT img; /* temporary dissolved image */
FILE *outfP=NULL; /* output file pointer */
/* Dissolve the siP and diP images into img */
rgbaImageInit(&img);
if(rgbaImageDissolve(&img, siP, diP, dissolve)) {
return -1;
}
/* Open the output image file for binary writing */
if(filename!=NULL && (outfP=fopen(filename, "wb"))==NULL) {
fprintf(stderr, "rgbaImageWrite: could not open '%s' for output\n", filename);
return -1;
}
{
/* Set the image header */
tga_hdr_t tga_hdr;
/* Targa */
tga_hdr.id_len = 0;
/* cmap_type depends on the img_type */
tga_hdr.cmap_type = 0;
/* img_type comes from the user */
tga_hdr.img_type = TGA_RGB;
if(img.compressed) tga_hdr.img_type += TGA_RLE;
tga_hdr.cmap_index = 0;
/* cmap_len depends on the img_type and pixel_size */
tga_hdr.cmap_len = 0;
/* cmap_size depends on the img_type and pixel_size */
tga_hdr.cmap_size = 0;
tga_hdr.x_off = 0;
tga_hdr.y_off = 0;
/* pixel_size depends on the img_type */
tga_hdr.pixel_size = img.pixel_size;
tga_hdr.att_bits = 0;
tga_hdr.reserved = 0;
tga_hdr.origin_bit = 0;
tga_hdr.interleave = TGA_IL_None;
/* Save the image header */
{
int tga_return; /* return values from tgaHeaderWrite */
/* Targa */
if( (tga_return = tgaHeaderWrite(&tga_hdr, &img, outfP)) ) {
fprintf(stderr, "tgaHeaderWrite returned %i\n", tga_return);
return tga_return;
}
}
/* Save the dissolved image */
/* Targa */
tgaWrite(&tga_hdr, &img, outfP);
}
/* Free the dissolved image */
rgbaImageFree(&img);
/* Close the output image file */
fclose(outfP);
return 0;
}
/* rgbaImageTestCreate: generate a test image
//
//
// ARGUMENTS
// this: RgbaImage instance
// type: bitfield: which test image pattern to use.
//
//
// DESCRIPTION
// Uses the incoming values of ncols and nrows to determine image size.
// If ncols or nrows are zero, default values are used instead.
//
// Memory for the images is allocated and 'this' is set.
*/
int
rgbaImageTestCreate(RgbaImageT *this, int type)
{
int xi, yi; /* pixel coordinate indices */
unsigned char p; /* pixel value */
int alloc_flag = 0; /* whether to allocate an image */
this->compressed = 1;
this->color_mapped = 0;
this->pixel_size = 24;
this->type = TARGA_MAGIC;
/* Test to see whether previous rgba image had any area.
// If not, then create a default area.
*/
if(this->ncols <= 0) {
this->ncols = 300;
alloc_flag = 1;
}
if(this->nrows <= 0) {
this->nrows = 200;
alloc_flag = 1;
}
/* Another possibility is that the size could have been set before
// calling this routine, but no memory had yet been allocated.
// In which case, memory ought to be allocated now.
//
// This might seem unusual-- allocating memory for the first time in
// a routine which is not the object constructor. But in a sense, this
// is a RgbaImage constructor -- It generates an image, often for
// the first time, simply to occupy screen space to indicate that the
// image exists. But sometimes, this routine is also used to simply
// create a test image to erase a previous image, in which case this
// routine does not act like a constructor.
*/
if((this->ri == NULL) || (this->gi == NULL) || (this->bi == NULL)) {
alloc_flag = 1;
}
if(alloc_flag) {
#if DEBUG >= 2
printf("rgbaImageTestCreate: Alloc %i %i\n", this->ncols, this->nrows);
#endif
if(rgbaImageAlloc(this, this->ncols, this->nrows))
return 1;
}
/* Create the test pattern */
for(yi=0; yi < this->nrows; yi++) {
for(xi=0; xi < this->ncols; xi++) {
p = 15 + 240*((float)xi/this->ncols)*((float)yi/this->nrows);
if((xi%40>20 && yi%40<20) || (xi%40<20 && yi%40>20))
p=0;
if(type & 1) {
this->ri[yi*(this->ncols) + xi] = p;
} else {
this->ri[yi*(this->ncols) + xi] = RGBA_IMAGE_MAXVAL - p;
}
if(type & 2) {
this->gi[yi*(this->ncols) + xi] = p;
} else {
this->gi[yi*(this->ncols) + xi] = RGBA_IMAGE_MAXVAL - p;
}
if(type & 4) {
this->bi[yi*(this->ncols) + xi] = p;
} else {
this->bi[yi*(this->ncols) + xi] = RGBA_IMAGE_MAXVAL - p;
}
this->ai[yi*(this->ncols) + xi] = RGBA_IMAGE_OPAQUE;
}
}
return 0;
}
/* RGBA_MESH_WARP:
// The following code is for warping RgbaImages. The other RgbaImage
// code above does not require the use of the mesh code or the warp code,
// so the following code is enclosed in an ifdef block
*/
#ifdef RGBA_MESH_WARP
#include "mesh.h"
#include "warp.h"
int
rgbaImageWarp(const RgbaImageT *img_orig, RgbaImageT *img_warp, const MeshT *mesh_src, const MeshT *mesh_dst, float tween_param)
{
MeshT mesh_tween;
meshInit(&mesh_tween);
if(meshCompatibilityCheck(mesh_src, mesh_dst)) {
fprintf(stderr, "rgbaImageWarp: meshes are incompatible\n");
return 1;
}
/* Set the tween mesh */
meshAlloc(&mesh_tween, mesh_src->nx, mesh_src->ny);
meshInterpolate(&mesh_tween, mesh_src, mesh_dst, tween_param);
/* Allocate space for the warp image */
rgbaImageFree(img_warp);
if(rgbaImageAlloc(img_warp, img_orig->ncols, img_orig->nrows))
return 1;
/* Warp the image, one channel at a time */
/* Warp forward from mesh_src to mesh_tween */
warp_image(img_orig->ri, img_warp->ri, img_orig->ncols,
img_orig->nrows, mesh_src->x, mesh_src->y, mesh_tween.x,
mesh_tween.y, mesh_tween.nx, mesh_tween.ny);
warp_image(img_orig->gi, img_warp->gi, img_orig->ncols,
img_orig->nrows, mesh_src->x, mesh_src->y, mesh_tween.x,
mesh_tween.y, mesh_tween.nx, mesh_tween.ny);
warp_image(img_orig->bi, img_warp->bi, img_orig->ncols,
img_orig->nrows, mesh_src->x, mesh_src->y, mesh_tween.x,
mesh_tween.y, mesh_tween.nx, mesh_tween.ny);
warp_image(img_orig->ai, img_warp->ai, img_orig->ncols,
img_orig->nrows, mesh_src->x, mesh_src->y, mesh_tween.x,
mesh_tween.y, mesh_tween.nx, mesh_tween.ny);
meshFree(&mesh_tween);
return 0;
}
#endif /* RGBA_MESH_WARP */
/* RGBA_TK:
// The following code is for converting RgbaImages into Tk Photo images.
// The other RgbaImage code above does not require the use of Tk,
// so the following code is enclosed in an ifdef block.
*/
#ifdef RGBA_TK
#include <tcl.h>
#include <tk.h>
/* NAME
// rgbaImageTkPhotoConvert: convert RgbaImageT to a TCL/Tk PhotoImage
*/
void
rgbaImageTkPhotoConvert(RgbaImageT *this, Tk_PhotoHandle photoH)
{
/* Give the image block to Tk */
Tk_PhotoImageBlock block;
block.pixelPtr = this->ri;
block.width = this->ncols;
block.height = this->nrows;
block.pitch = this->ncols;
block.pixelSize = sizeof(unsigned char);
block.offset[0] = 0;
block.offset[1] = this->ncols * this->nrows;
block.offset[2] = 2 * block.offset[1];
/* Set the photo image size */
Tk_PhotoSetSize(photoH, block.width, block.height);
Tk_PhotoPutBlock(photoH, &block, 0, 0, block.width, block.height);
}
#endif /* RGBA_TK */
|