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
|
/**************************************************************************//**
* GradientFill, TextureFill class definitions for RMagick.
*
* Copyright © 2002 - 2009 by Timothy P. Hunter
*
* Changes since Nov. 2009 copyright © by Benjamin Thomas and Omer Bar-or
*
* @file rmfill.c
* @version $Id: rmfill.c,v 1.33 2009/12/20 02:33:33 baror Exp $
* @author Tim Hunter
******************************************************************************/
#include "rmagick.h"
/** Data associated with a GradientFill */
typedef struct
{
double x1; /**< x position of first point */
double y1; /**< y position of first point */
double x2; /**< x position of second point */
double y2; /**< y position of second point */
PixelPacket start_color; /**< the start color */
PixelPacket stop_color; /**< the stop color */
} rm_GradientFill;
/** Data associated with a TextureFill */
typedef struct
{
Image *texture; /**< the texture */
} rm_TextureFill;
/**
* Free Fill or Fill subclass object (except for TextureFill).
*
* No Ruby usage (internal function)
*
* @param fill the fill
*/
static void free_Fill(void *fill)
{
xfree(fill);
}
/**
* Create new GradientFill object.
*
* No Ruby usage (internal function)
*
* @param class the Ruby class to use
* @return a new GradientFill object
*/
VALUE
GradientFill_alloc(VALUE class)
{
rm_GradientFill *fill;
return Data_Make_Struct(class, rm_GradientFill, NULL, free_Fill, fill);
}
/**
* Store the vector points and the start and stop colors.
*
* Ruby usage:
* - @verbatim GradientFill#initialize(x1,y1,x2,y2,start_color,stop_color) @endverbatim
*
* @param self this object
* @param x1 x position of first point
* @param y1 y position of first point
* @param x2 x position of second point
* @param y2 y position of second point
* @param start_color the start color
* @param stop_color the stop color
* @return self
*/
VALUE
GradientFill_initialize(
VALUE self,
VALUE x1,
VALUE y1,
VALUE x2,
VALUE y2,
VALUE start_color,
VALUE stop_color)
{
rm_GradientFill *fill;
Data_Get_Struct(self, rm_GradientFill, fill);
fill->x1 = NUM2DBL(x1);
fill->y1 = NUM2DBL(y1);
fill->x2 = NUM2DBL(x2);
fill->y2 = NUM2DBL(y2);
Color_to_PixelPacket(&fill->start_color, start_color);
Color_to_PixelPacket(&fill->stop_color, stop_color);
return self;
}
/**
* Do a gradient that radiates from a point.
*
* No Ruby usage (internal function)
*
* @param image the image on which to do the gradient
* @param x0 x position of the point
* @param y0 y position of the point
* @param start_color the start color
* @param stop_color the stop color
*/
static void
point_fill(
Image *image,
double x0,
double y0,
PixelPacket *start_color,
PixelPacket *stop_color)
{
double steps, distance;
unsigned long x, y;
MagickRealType red_step, green_step, blue_step;
#if defined(HAVE_SYNCAUTHENTICPIXELS) || defined(HAVE_QUEUEAUTHENTICPIXELS)
ExceptionInfo exception;
GetExceptionInfo(&exception);
#endif
steps = sqrt((double)((image->columns-x0)*(image->columns-x0)
+ (image->rows-y0)*(image->rows-y0)));
red_step = ((MagickRealType)stop_color->red - (MagickRealType)start_color->red) / steps;
green_step = ((MagickRealType)stop_color->green - (MagickRealType)start_color->green) / steps;
blue_step = ((MagickRealType)stop_color->blue - (MagickRealType)start_color->blue) / steps;
for (y = 0; y < image->rows; y++)
{
PixelPacket *row_pixels;
#if defined(HAVE_QUEUEAUTHENTICPIXELS)
row_pixels = QueueAuthenticPixels(image, 0, (long int)y, image->columns, 1, &exception);
CHECK_EXCEPTION()
#else
row_pixels = SetImagePixels(image, 0, (long int)y, image->columns, 1);
rm_check_image_exception(image, RetainOnError);
#endif
for (x = 0; x < image->columns; x++)
{
distance = sqrt((double)((x-x0)*(x-x0)+(y-y0)*(y-y0)));
row_pixels[x].red = ROUND_TO_QUANTUM(start_color->red + (distance * red_step));
row_pixels[x].green = ROUND_TO_QUANTUM(start_color->green + (distance * green_step));
row_pixels[x].blue = ROUND_TO_QUANTUM(start_color->blue + (distance * blue_step));
row_pixels[x].opacity = OpaqueOpacity;
}
#if defined(HAVE_SYNCAUTHENTICPIXELS)
SyncAuthenticPixels(image, &exception);
CHECK_EXCEPTION()
#else
SyncImagePixels(image);
rm_check_image_exception(image, RetainOnError);
#endif
}
#if defined(HAVE_SYNCAUTHENTICPIXELS) || defined(HAVE_QUEUEAUTHENTICPIXELS)
DestroyExceptionInfo(&exception);
#endif
}
/**
* Do a gradient fill that proceeds from a vertical line to the right and left
* sides of the image.
*
* No Ruby usage (internal function)
*
* @param image the image on which to do the gradient
* @param x1 x position of the vertical line
* @param start_color the start color
* @param stop_color the stop color
*/
static void
vertical_fill(
Image *image,
double x1,
PixelPacket *start_color,
PixelPacket *stop_color)
{
double steps;
unsigned long x, y;
PixelPacket *master;
MagickRealType red_step, green_step, blue_step;
#if defined(HAVE_SYNCAUTHENTICPIXELS) || defined(HAVE_QUEUEAUTHENTICPIXELS)
ExceptionInfo exception;
GetExceptionInfo(&exception);
#endif
steps = FMAX(x1, ((long)image->columns)-x1);
// If x is to the left of the x-axis, add that many steps so that
// the color at the right side will be that many steps away from
// the stop color.
if (x1 < 0)
{
steps -= x1;
}
red_step = ((MagickRealType)stop_color->red - (MagickRealType)start_color->red) / steps;
green_step = ((MagickRealType)stop_color->green - (MagickRealType)start_color->green) / steps;
blue_step = ((MagickRealType)stop_color->blue - (MagickRealType)start_color->blue) / steps;
// All the rows are the same. Make a "master row" and simply copy
// it to each actual row.
master = ALLOC_N(PixelPacket, image->columns);
for (x = 0; x < image->columns; x++)
{
double distance = fabs(x1 - x);
master[x].red = ROUND_TO_QUANTUM(start_color->red + (red_step * distance));
master[x].green = ROUND_TO_QUANTUM(start_color->green + (green_step * distance));
master[x].blue = ROUND_TO_QUANTUM(start_color->blue + (blue_step * distance));
master[x].opacity = OpaqueOpacity;
}
// Now copy the master row to each actual row.
for (y = 0; y < image->rows; y++)
{
PixelPacket *row_pixels;
#if defined(HAVE_QUEUEAUTHENTICPIXELS)
row_pixels = QueueAuthenticPixels(image, 0, (long int)y, image->columns, 1, &exception);
CHECK_EXCEPTION()
#else
row_pixels = SetImagePixels(image, 0, (long int)y, image->columns, 1);
rm_check_image_exception(image, RetainOnError);
#endif
memcpy(row_pixels, master, image->columns * sizeof(PixelPacket));
#if defined(HAVE_SYNCAUTHENTICPIXELS)
SyncAuthenticPixels(image, &exception);
CHECK_EXCEPTION()
#else
SyncImagePixels(image);
rm_check_image_exception(image, RetainOnError);
#endif
}
#if defined(HAVE_SYNCAUTHENTICPIXELS) || defined(HAVE_QUEUEAUTHENTICPIXELS)
DestroyExceptionInfo(&exception);
#endif
xfree((void *)master);
}
/**
* Do a gradient fill that starts from a horizontal line.
*
* No Ruby usage (internal function)
*
* @param image the image on which to do the gradient
* @param y1 y position of the horizontal line
* @param start_color the start color
* @param stop_color the stop color
*/
static void
horizontal_fill(
Image *image,
double y1,
PixelPacket *start_color,
PixelPacket *stop_color)
{
double steps;
unsigned long x, y;
PixelPacket *master;
MagickRealType red_step, green_step, blue_step;
#if defined(HAVE_SYNCAUTHENTICPIXELS) || defined(HAVE_QUEUEAUTHENTICPIXELS)
ExceptionInfo exception;
GetExceptionInfo(&exception);
#endif
steps = FMAX(y1, ((long)image->rows)-y1);
// If the line is below the y-axis, add that many steps so the color
// at the bottom of the image is that many steps away from the stop color
if (y1 < 0)
{
steps -= y1;
}
red_step = ((MagickRealType)stop_color->red - (MagickRealType)start_color->red) / steps;
green_step = ((MagickRealType)stop_color->green - (MagickRealType)start_color->green) / steps;
blue_step = ((MagickRealType)stop_color->blue - (MagickRealType)start_color->blue) / steps;
// All the columns are the same, so make a master column and copy it to
// each of the "real" columns.
master = ALLOC_N(PixelPacket, image->rows);
for (y = 0; y < image->rows; y++)
{
double distance = fabs(y1 - y);
master[y].red = ROUND_TO_QUANTUM(start_color->red + (distance * red_step));
master[y].green = ROUND_TO_QUANTUM(start_color->green + (distance * green_step));
master[y].blue = ROUND_TO_QUANTUM(start_color->blue + (distance * blue_step));
master[y].opacity = OpaqueOpacity;
}
for (x = 0; x < image->columns; x++)
{
PixelPacket *col_pixels;
#if defined(HAVE_QUEUEAUTHENTICPIXELS)
col_pixels = QueueAuthenticPixels(image, (long int)x, 0, 1, image->rows, &exception);
#else
col_pixels = SetImagePixels(image, (long int)x, 0, 1, image->rows);
rm_check_image_exception(image, RetainOnError);
#endif
memcpy(col_pixels, master, image->rows * sizeof(PixelPacket));
#if defined(HAVE_SYNCAUTHENTICPIXELS)
SyncAuthenticPixels(image, &exception);
CHECK_EXCEPTION()
#else
SyncImagePixels(image);
rm_check_image_exception(image, RetainOnError);
#endif
}
#if defined(HAVE_SYNCAUTHENTICPIXELS) || defined(HAVE_QUEUEAUTHENTICPIXELS)
DestroyExceptionInfo(&exception);
#endif
xfree((PixelPacket *)master);
}
/**
* Do a gradient fill that starts from a diagonal line and ends at the top and
* bottom of the image.
*
* No Ruby usage (internal function)
*
* @param image the image on which to do the gradient
* @param x1 x position of the start of the diagonal line
* @param y1 y position of the start of the diagonal line
* @param x2 x position of the end of the diagonal line
* @param y2 y position of the end of the diagonal line
* @param start_color the start color
* @param stop_color the stop color
*/
static void
v_diagonal_fill(
Image *image,
double x1,
double y1,
double x2,
double y2,
PixelPacket *start_color,
PixelPacket *stop_color)
{
unsigned long x, y;
MagickRealType red_step, green_step, blue_step;
double m, b, steps = 0.0;
double d1, d2;
#if defined(HAVE_SYNCAUTHENTICPIXELS) || defined(HAVE_QUEUEAUTHENTICPIXELS)
ExceptionInfo exception;
GetExceptionInfo(&exception);
#endif
// Compute the equation of the line: y=mx+b
m = ((double)(y2 - y1))/((double)(x2 - x1));
b = y1 - (m * x1);
// The number of steps is the greatest distance between the line and
// the top or bottom of the image between x=0 and x=image->columns
// When x=0, y=b. When x=image->columns, y = m*image->columns+b
d1 = b;
d2 = m * image->columns + b;
if (d1 < 0 && d2 < 0)
{
steps += FMAX(fabs(d1),fabs(d2));
}
else if (d1 > (double)image->rows && d2 > (double)image->rows)
{
steps += FMAX(d1-image->rows, d2-image->rows);
}
d1 = FMAX(b, image->rows-b);
d2 = FMAX(d2, image->rows-d2);
steps += FMAX(d1, d2);
// If the line is entirely > image->rows, swap the start & end color
if (steps < 0)
{
PixelPacket t = *stop_color;
*stop_color = *start_color;
*start_color = t;
steps = -steps;
}
red_step = ((MagickRealType)stop_color->red - (MagickRealType)start_color->red) / steps;
green_step = ((MagickRealType)stop_color->green - (MagickRealType)start_color->green) / steps;
blue_step = ((MagickRealType)stop_color->blue - (MagickRealType)start_color->blue) / steps;
for (y = 0; y < image->rows; y++)
{
PixelPacket *row_pixels;
#if defined(HAVE_QUEUEAUTHENTICPIXELS)
row_pixels = QueueAuthenticPixels(image, 0, (long int)y, image->columns, 1, &exception);
CHECK_EXCEPTION()
#else
row_pixels = SetImagePixels(image, 0, (long int)y, image->columns, 1);
rm_check_image_exception(image, RetainOnError);
#endif
for (x = 0; x < image->columns; x++)
{
double distance = (double) abs((int)(y-(m * x + b)));
row_pixels[x].red = ROUND_TO_QUANTUM(start_color->red + (distance * red_step));
row_pixels[x].green = ROUND_TO_QUANTUM(start_color->green + (distance * green_step));
row_pixels[x].blue = ROUND_TO_QUANTUM(start_color->blue + (distance * blue_step));
row_pixels[x].opacity = OpaqueOpacity;
}
#if defined(HAVE_SYNCAUTHENTICPIXELS)
SyncAuthenticPixels(image, &exception);
CHECK_EXCEPTION()
#else
SyncImagePixels(image);
rm_check_image_exception(image, RetainOnError);
#endif
}
#if defined(HAVE_SYNCAUTHENTICPIXELS) || defined(HAVE_QUEUEAUTHENTICPIXELS)
DestroyExceptionInfo(&exception);
#endif
}
/**
* Do a gradient fill that starts from a diagonal line and ends at the sides of
* the image.
*
* No Ruby usage (internal function)
*
* @param image the image on which to do the gradient
* @param x1 x position of the start of the diagonal line
* @param y1 y position of the start of the diagonal line
* @param x2 x position of the end of the diagonal line
* @param y2 y position of the end of the diagonal line
* @param start_color the start color
* @param stop_color the stop color
*/
static void
h_diagonal_fill(
Image *image,
double x1,
double y1,
double x2,
double y2,
PixelPacket *start_color,
PixelPacket *stop_color)
{
unsigned long x, y;
double m, b, steps = 0.0;
MagickRealType red_step, green_step, blue_step;
double d1, d2;
#if defined(HAVE_SYNCAUTHENTICPIXELS) || defined(HAVE_QUEUEAUTHENTICPIXELS)
ExceptionInfo exception;
GetExceptionInfo(&exception);
#endif
// Compute the equation of the line: y=mx+b
m = ((double)(y2 - y1))/((double)(x2 - x1));
b = y1 - (m * x1);
// The number of steps is the greatest distance between the line and
// the left or right side of the image between y=0 and y=image->rows.
// When y=0, x=-b/m. When y=image->rows, x = (image->rows-b)/m.
d1 = -b/m;
d2 = (double) ((image->rows-b) / m);
// If the line is entirely to the right or left of the image, increase
// the number of steps.
if (d1 < 0 && d2 < 0)
{
steps += FMAX(fabs(d1),fabs(d2));
}
else if (d1 > (double)image->columns && d2 > (double)image->columns)
{
steps += FMAX(abs((int)(image->columns-d1)),abs((int)(image->columns-d2)));
}
d1 = FMAX(d1, image->columns-d1);
d2 = FMAX(d2, image->columns-d2);
steps += FMAX(d1, d2);
// If the line is entirely > image->columns, swap the start & end color
if (steps < 0)
{
PixelPacket t = *stop_color;
*stop_color = *start_color;
*start_color = t;
steps = -steps;
}
red_step = ((MagickRealType)stop_color->red - (MagickRealType)start_color->red) / steps;
green_step = ((MagickRealType)stop_color->green - (MagickRealType)start_color->green) / steps;
blue_step = ((MagickRealType)stop_color->blue - (MagickRealType)start_color->blue) / steps;
for (y = 0; y < image->rows; y++)
{
PixelPacket *row_pixels;
#if defined(HAVE_QUEUEAUTHENTICPIXELS)
row_pixels = QueueAuthenticPixels(image, 0, (long int)y, image->columns, 1, &exception);
CHECK_EXCEPTION()
#else
row_pixels = SetImagePixels(image, 0, (long int)y, image->columns, 1);
rm_check_image_exception(image, RetainOnError);
#endif
for (x = 0; x < image->columns; x++)
{
double distance = (double) abs((int)(x-((y-b)/m)));
row_pixels[x].red = ROUND_TO_QUANTUM(start_color->red + (distance * red_step));
row_pixels[x].green = ROUND_TO_QUANTUM(start_color->green + (distance * green_step));
row_pixels[x].blue = ROUND_TO_QUANTUM(start_color->blue + (distance * blue_step));
row_pixels[x].opacity = OpaqueOpacity;
}
#if defined(HAVE_SYNCAUTHENTICPIXELS)
SyncAuthenticPixels(image, &exception);
CHECK_EXCEPTION()
#else
SyncImagePixels(image);
rm_check_image_exception(image, RetainOnError);
#endif
}
#if defined(HAVE_SYNCAUTHENTICPIXELS) || defined(HAVE_QUEUEAUTHENTICPIXELS)
DestroyExceptionInfo(&exception);
#endif
}
/**
* Call GradientFill with the start and stop colors specified when this fill
* object was created.
*
* Ruby usage:
* - @verbatim GradientFill#fill(image) @endverbatim
*
* @param self this object
* @param image_obj the image
* @return self
*/
VALUE
GradientFill_fill(VALUE self, VALUE image_obj)
{
rm_GradientFill *fill;
Image *image;
PixelPacket start_color, stop_color;
double x1, y1, x2, y2; // points on the line
Data_Get_Struct(self, rm_GradientFill, fill);
image = rm_check_destroyed(image_obj);
x1 = fill->x1;
y1 = fill->y1;
x2 = fill->x2;
y2 = fill->y2;
start_color = fill->start_color;
stop_color = fill->stop_color;
if (fabs(x2-x1) < 0.5) // vertical?
{
// If the x1,y1 and x2,y2 points are essentially the same
if (fabs(y2-y1) < 0.5)
{
point_fill(image, x1, y1, &start_color, &stop_color);
}
// A vertical line is a special case.
else
{
vertical_fill(image, x1, &start_color, &stop_color);
}
}
// A horizontal line is a special case.
else if (fabs(y2-y1) < 0.5)
{
horizontal_fill(image, y1, &start_color, &stop_color);
}
// This is the general case - a diagonal line. If the line is more horizontal
// than vertical, use the top and bottom of the image as the ends of the
// gradient, otherwise use the sides of the image.
else
{
double m = ((double)(y2 - y1))/((double)(x2 - x1));
double diagonal = ((double)image->rows)/image->columns;
if (fabs(m) <= diagonal)
{
v_diagonal_fill(image, x1, y1, x2, y2, &start_color, &stop_color);
}
else
{
h_diagonal_fill(image, x1, y1, x2, y2, &start_color, &stop_color);
}
}
return self;
}
/**
* Free the TextureFill struct and the texture image it points to.
*
* No Ruby usage (internal function)
*
* Notes:
* - Called from GC
*
* @param fill_obj the TextureFill
*/
static void
free_TextureFill(void *fill_obj)
{
rm_TextureFill *fill = (rm_TextureFill *)fill_obj;
// Do not trace destruction
(void) DestroyImage(fill->texture);
xfree(fill);
}
/**
* Create new TextureFill object.
*
* No Ruby usage (internal function)
*
* Notes:
* - The texture is an Image or Image *object
*
* @param class the Ruby class to use
* @return a new TextureFill object
*/
VALUE
TextureFill_alloc(VALUE class)
{
rm_TextureFill *fill;
return Data_Make_Struct(class
, rm_TextureFill
, NULL
, free_TextureFill
, fill);
}
/**
* Store the texture image.
*
* Ruby usage:
* - @verbatim TextureFill#initialize(texture) @endverbatim
*
* Notes:
* - The texture is an Image or Image *object
*
* @param self this object
* @param texture_arg the texture
* @return self
*/
VALUE
TextureFill_initialize(VALUE self, VALUE texture_arg)
{
rm_TextureFill *fill;
Image *texture;
volatile VALUE texture_image;
Data_Get_Struct(self, rm_TextureFill, fill);
texture_image = rm_cur_image(texture_arg);
// Bump the reference count on the texture image.
texture = rm_check_destroyed(texture_image);
(void) ReferenceImage(texture);
fill->texture = texture;
return self;
}
/**
* Call TextureFill with the texture specified when this fill object was
* created.
*
* Ruby usage:
* - @verbatim TextureFill#fill(image) @endverbatim
*
* @param self this object
* @param image_obj the image
* @return self
*/
VALUE
TextureFill_fill(VALUE self, VALUE image_obj)
{
rm_TextureFill *fill;
Image *image;
image = rm_check_destroyed(image_obj);
Data_Get_Struct(self, rm_TextureFill, fill);
(void) TextureImage(image, fill->texture);
rm_check_image_exception(image, RetainOnError);
return self;
}
|