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
|
/**************************************************************************//**
* Contains Montage class methods.
*
* Copyright © 2002 - 2009 by Timothy P. Hunter
*
* Changes since Nov. 2009 copyright © by Benjamin Thomas and Omer Bar-or
*
* @file rmmontage.cpp
* @version $Id: rmmontage.cpp,v 1.5 2009/12/20 02:33:33 baror Exp $
* @author Tim Hunter
******************************************************************************/
#include "rmagick.h"
static void Montage_destroy(void *obj);
static size_t Montage_memsize(const void *obj);
const rb_data_type_t rm_montage_data_type = {
"Magick::ImageList::Montage",
{ NULL, Montage_destroy, Montage_memsize, },
0, 0,
RUBY_TYPED_FROZEN_SHAREABLE,
};
/**
* Destory the MontageInfo struct and free the Montage struct.
*
* No Ruby usage (internal function)
*
* Notes:
* - If the Magick::ImageList::Montage#texture method wrote a texture file, the file is
* deleted here.
*
* @param obj the montage object
*/
static void
Montage_destroy(void *obj)
{
Montage *montage = (Montage *)obj;
// If we saved a temporary texture image, delete it now.
if (montage->info && montage->info->texture != NULL)
{
rm_delete_temp_image(montage->info->texture);
magick_free(montage->info->texture);
montage->info->texture = NULL;
}
if (montage->info)
{
DestroyMontageInfo(montage->info);
montage->info = NULL;
}
xfree(montage);
}
/**
* Get Montage object size.
*
* No Ruby usage (internal function)
*
* @param ptr pointer to the Montage object
*/
static size_t
Montage_memsize(const void *ptr)
{
return sizeof(Montage);
}
/**
* Create a new Montage object.
*
* @return [Magick::ImageList::Montage] a new Montage object
*/
VALUE
Montage_alloc(VALUE klass)
{
MontageInfo *montage_info;
Montage *montage;
Info *image_info;
VALUE montage_obj;
// DO NOT call rm_info_new - we don't want to support an Info parm block.
image_info = CloneImageInfo(NULL);
if (!image_info)
{
rb_raise(rb_eNoMemError, "not enough memory to initialize Info object");
}
montage_info = CloneMontageInfo(image_info, NULL);
(void) DestroyImageInfo(image_info);
if (!montage_info)
{
rb_raise(rb_eNoMemError, "not enough memory to initialize Magick::ImageList::Montage object");
}
montage = ALLOC(Montage);
montage->info = montage_info;
montage->compose = OverCompositeOp;
montage_obj = TypedData_Wrap_Struct(klass, &rm_montage_data_type, montage);
RB_GC_GUARD(montage_obj);
return montage_obj;
}
/**
* Set background_color value.
*
* @param color [Magick::Pixel, String] the color name
* @return [Magick::Pixel, String] the given color name
*/
VALUE
Montage_background_color_eq(VALUE self, VALUE color)
{
Montage *montage;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
Color_to_PixelColor(&montage->info->background_color, color);
return color;
}
/**
* Set border_color value.
*
* @param color [Magick::Pixel, String] the color name
* @return [Magick::Pixel, String] the given color name
*/
VALUE
Montage_border_color_eq(VALUE self, VALUE color)
{
Montage *montage;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
Color_to_PixelColor(&montage->info->border_color, color);
return color;
}
/**
* Set border_width value.
*
* @param width [Numeric] the width
* @return [Numeric] the given width
*/
VALUE
Montage_border_width_eq(VALUE self, VALUE width)
{
Montage *montage;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
montage->info->border_width = NUM2ULONG(width);
return width;
}
/**
* Set a composition operator.
*
* @param compose [Magick::CompositeOperator] the composition operator
* @return [Magick::CompositeOperator] the given compose operator
*/
VALUE
Montage_compose_eq(VALUE self, VALUE compose)
{
Montage *montage;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
VALUE_TO_ENUM(compose, montage->compose, CompositeOperator);
return compose;
}
/**
* Set filename value.
*
* @param filename [String] the filename
* @return [String] filename
*/
VALUE
Montage_filename_eq(VALUE self, VALUE filename)
{
Montage *montage;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
strlcpy(montage->info->filename, StringValueCStr(filename), sizeof(montage->info->filename));
return filename;
}
/**
* Set fill value.
*
* @param color [Magick::Pixel, String] the color name
* @return [Magick::Pixel, String] the given color name
*/
VALUE
Montage_fill_eq(VALUE self, VALUE color)
{
Montage *montage;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
Color_to_PixelColor(&montage->info->fill, color);
return color;
}
/**
* Set font value.
*
* @param font [String] the font name
* @return [String] the given font name
*/
VALUE
Montage_font_eq(VALUE self, VALUE font)
{
Montage *montage;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
magick_clone_string(&montage->info->font, StringValueCStr(font));
return font;
}
/**
* Set frame value.
*
* - The geometry is a string in the form:
* <width>x<height>+<outer-bevel-width>+<inner-bevel-width>
* or a Geometry object
*
* @param frame_arg [Magick::Geometry, String] the frame geometry
* @see https://www.imagemagick.org/Magick++/Geometry.html
*/
VALUE
Montage_frame_eq(VALUE self, VALUE frame_arg)
{
Montage *montage;
VALUE frame;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
frame = rb_String(frame_arg);
magick_clone_string(&montage->info->frame, StringValueCStr(frame));
RB_GC_GUARD(frame);
return frame_arg;
}
/**
* Set geometry value.
*
* - The geometry is a string in the form:
* <width>x<height>+<outer-bevel-width>+<inner-bevel-width>
* or a Geometry object
*
* @param geometry_arg [Magick::Geometry, String] the geometry
* @return [Magick::Geometry, String] the given geometry
* @see https://www.imagemagick.org/Magick++/Geometry.html
*/
VALUE
Montage_geometry_eq(VALUE self, VALUE geometry_arg)
{
Montage *montage;
VALUE geometry;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
geometry = rb_String(geometry_arg);
magick_clone_string(&montage->info->geometry, StringValueCStr(geometry));
RB_GC_GUARD(geometry);
return geometry_arg;
}
/**
* Set gravity value.
*
* @param gravity [Magick::GravityType] the gravity type
* @return [Magick::GravityType] the given gravity
*/
VALUE
Montage_gravity_eq(VALUE self, VALUE gravity)
{
Montage *montage;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
VALUE_TO_ENUM(gravity, montage->info->gravity, GravityType);
return gravity;
}
/**
* Initialize a Montage object. Does nothing currently.
*
* @return [Magick::ImageList::Montage] self
*/
VALUE
Montage_initialize(VALUE self)
{
// Nothing to do!
return self;
}
/**
* Set matte_color value.
*
* @param color [Magick::Pixel, String] the color name
* @return [Magick::Pixel, String] the given color name
*/
VALUE
Montage_matte_color_eq(VALUE self, VALUE color)
{
Montage *montage;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
Color_to_PixelColor(&montage->info->matte_color, color);
return color;
}
/**
* Set pointsize value.
*
* @param size [Numeric] the point size
* @return [Numeric] the given point size
*/
VALUE
Montage_pointsize_eq(VALUE self, VALUE size)
{
Montage *montage;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
montage->info->pointsize = NUM2DBL(size);
return size;
}
/**
* Set shadow value.
*
* @param shadow [Bool] true if the shadow will be enabled
* @return [Bool] the given value
*/
VALUE
Montage_shadow_eq(VALUE self, VALUE shadow)
{
Montage *montage;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
montage->info->shadow = (MagickBooleanType) RTEST(shadow);
return shadow;
}
/**
* Set stroke value.
*
* @param color [Magick::Pixel, String] the color name
* @return [Magick::Pixel, String] the given color name
*/
VALUE
Montage_stroke_eq(VALUE self, VALUE color)
{
Montage *montage;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
Color_to_PixelColor(&montage->info->stroke, color);
return color;
}
/**
* Set texture value.
*
* @param texture [Magick::Image, Magick::ImageList] Either an imagelist or an image. If an
* imagelist, uses the current image.
* @return [Magick::Image] the given texture image
*/
VALUE
Montage_texture_eq(VALUE self, VALUE texture)
{
Montage *montage;
Image *texture_image;
char temp_name[MaxTextExtent];
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
// If we had a previously defined temp texture image,
// remove it now in preparation for this new one.
if (montage->info->texture)
{
rm_delete_temp_image(montage->info->texture);
magick_free(montage->info->texture);
montage->info->texture = NULL;
}
texture = rm_cur_image(texture);
texture_image = rm_check_destroyed(texture);
// Write a temp copy of the image & save its name.
rm_write_temp_image(texture_image, temp_name, sizeof(temp_name));
magick_clone_string(&montage->info->texture, temp_name);
return texture;
}
/**
* Set tile value.
*
* - The geometry is a string in the form:
* <width>x<height>+<outer-bevel-width>+<inner-bevel-width>
* or a Geometry object
*
* @param tile_arg [Magick::Geometry, String] the tile geometry
* @return [Magick::Geometry, String] the given tile geometry
* @see https://www.imagemagick.org/Magick++/Geometry.html
*/
VALUE
Montage_tile_eq(VALUE self, VALUE tile_arg)
{
Montage *montage;
VALUE tile;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
tile = rb_String(tile_arg);
magick_clone_string(&montage->info->tile, StringValueCStr(tile));
RB_GC_GUARD(tile);
return tile_arg;
}
/**
* Set title value.
*
* @param title [String] the title
* @return [String] the given title
*/
VALUE
Montage_title_eq(VALUE self, VALUE title)
{
Montage *montage;
TypedData_Get_Struct(self, Montage, &rm_montage_data_type, montage);
magick_clone_string(&montage->info->title, StringValueCStr(title));
return title;
}
/**
* Return a new Magick::ImageList::Montage object.
*
* No Ruby usage (internal function)
*
* @return a new Magick::ImageList::Montage object
*/
VALUE
rm_montage_new(void)
{
return Montage_initialize(Montage_alloc(Class_Montage));
}
|