Module: Magick::DrawAttribute
- Included in:
- Draw, Image::DrawOptions, Image::PolaroidOptions
- Defined in:
- ext/RMagick/rmmain.cpp
Instance Method Summary collapse
-
#affine=(matrix) ⇒ Magick::AffineMatrix
Set the affine matrix from an AffineMatrix.
-
#align=(align) ⇒ Magick::AlignType
Set the text alignment from an AlignType.
-
#decorate=(decorate) ⇒ Magick::DecorationType
Set text decorate from an DecorationType.
-
#density=(density) ⇒ String
Set density.
-
#encoding=(encoding) ⇒ String
Set text encoding.
-
#fill=(fill) ⇒ Magick::Pixel, String
Set fill color.
-
#fill_pattern=(pattern) ⇒ Magick::Image
Accept an image as a fill pattern.
-
#font=(font) ⇒ String
Set the font name.
-
#font_family=(family) ⇒ String
Set the font family name.
-
#font_stretch=(stretch) ⇒ Magick::StretchType
Set the stretch as spacing between text characters.
-
#font_style=(style) ⇒ Magick::StyleType
Set font style.
-
#font_weight=(weight) ⇒ Magick::WeightType, Numeric
Set font weight.
-
#gravity=(grav) ⇒ Magick::GravityType
Set gravity to draw text.
-
#interline_spacing=(spacing) ⇒ Float
Set spacing between two lines.
-
#interword_spacing=(spacing) ⇒ Float
Set spacing between two words.
-
#kerning=(kerning) ⇒ Float
Set kerning as spacing between two letters.
-
#pointsize=(pointsize) ⇒ Float
Set point size to draw text.
-
#rotation=(deg) ⇒ Float
Set rotation.
-
#stroke=(stroke) ⇒ Magick::Pixel, String
Set stroke.
-
#stroke_pattern=(pattern) ⇒ Magick::Image
Accept an image as a stroke pattern.
-
#stroke_width=(stroke_width) ⇒ Float
Set stroke width.
-
#text_antialias=(text_antialias) ⇒ Boolean
Set whether to enable text antialias.
-
#tile=(image) ⇒ Magick::Image
Accept an image as a fill pattern.
-
#undercolor=(undercolor) ⇒ Magick::Pixel, String
Set undercolor.
Instance Method Details
#affine=(matrix) ⇒ Magick::AffineMatrix
Set the affine matrix from an AffineMatrix.
57 58 59 60 61 62 63 64 65 66 |
# File 'ext/RMagick/rmdraw.cpp', line 57
VALUE
Draw_affine_eq(VALUE self, VALUE matrix)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
Export_AffineMatrix(&draw->info->affine, matrix);
return matrix;
}
|
#align=(align) ⇒ Magick::AlignType
Set the text alignment from an AlignType.
75 76 77 78 79 80 81 82 83 84 |
# File 'ext/RMagick/rmdraw.cpp', line 75
VALUE
Draw_align_eq(VALUE self, VALUE align)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
VALUE_TO_ENUM(align, draw->info->align, AlignType);
return align;
}
|
#decorate=(decorate) ⇒ Magick::DecorationType
Set text decorate from an Magick::DecorationType.
93 94 95 96 97 98 99 100 101 102 |
# File 'ext/RMagick/rmdraw.cpp', line 93
VALUE
Draw_decorate_eq(VALUE self, VALUE decorate)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
VALUE_TO_ENUM(decorate, draw->info->decorate, DecorationType);
return decorate;
}
|
#density=(density) ⇒ String
Set density.
111 112 113 114 115 116 117 118 119 120 121 |
# File 'ext/RMagick/rmdraw.cpp', line 111
VALUE
Draw_density_eq(VALUE self, VALUE density)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
magick_clone_string(&draw->info->density, StringValueCStr(density));
return density;
}
|
#encoding=(encoding) ⇒ String
Set text encoding.
130 131 132 133 134 135 136 137 138 139 140 |
# File 'ext/RMagick/rmdraw.cpp', line 130
VALUE
Draw_encoding_eq(VALUE self, VALUE encoding)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
magick_clone_string(&draw->info->encoding, StringValueCStr(encoding));
return encoding;
}
|
#fill=(fill) ⇒ Magick::Pixel, String
Set fill color.
149 150 151 152 153 154 155 156 157 158 |
# File 'ext/RMagick/rmdraw.cpp', line 149
VALUE
Draw_fill_eq(VALUE self, VALUE fill)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
Color_to_PixelColor(&draw->info->fill, fill);
return fill;
}
|
#fill_pattern=(pattern) ⇒ Magick::Image
Accept an image as a fill pattern.
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 |
# File 'ext/RMagick/rmdraw.cpp', line 170
VALUE
Draw_fill_pattern_eq(VALUE self, VALUE pattern)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
if (draw->info->fill_pattern != NULL)
{
// Do not trace destruction
DestroyImage(draw->info->fill_pattern);
draw->info->fill_pattern = NULL;
}
if (!NIL_P(pattern))
{
Image *image;
pattern = rm_cur_image(pattern);
image = rm_check_destroyed(pattern);
// Do not trace creation
draw->info->fill_pattern = rm_clone_image(image);
}
return pattern;
}
|
#font=(font) ⇒ String
Set the font name.
205 206 207 208 209 210 211 212 213 214 215 |
# File 'ext/RMagick/rmdraw.cpp', line 205
VALUE
Draw_font_eq(VALUE self, VALUE font)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
magick_clone_string(&draw->info->font, StringValueCStr(font));
return font;
}
|
#font_family=(family) ⇒ String
Set the font family name.
224 225 226 227 228 229 230 231 232 233 234 |
# File 'ext/RMagick/rmdraw.cpp', line 224
VALUE
Draw_font_family_eq(VALUE self, VALUE family)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
magick_clone_string(&draw->info->family, StringValueCStr(family));
return family;
}
|
#font_stretch=(stretch) ⇒ Magick::StretchType
Set the stretch as spacing between text characters.
243 244 245 246 247 248 249 250 251 252 |
# File 'ext/RMagick/rmdraw.cpp', line 243
VALUE
Draw_font_stretch_eq(VALUE self, VALUE stretch)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
VALUE_TO_ENUM(stretch, draw->info->stretch, StretchType);
return stretch;
}
|
#font_style=(style) ⇒ Magick::StyleType
Set font style.
261 262 263 264 265 266 267 268 269 270 |
# File 'ext/RMagick/rmdraw.cpp', line 261
VALUE
Draw_font_style_eq(VALUE self, VALUE style)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
VALUE_TO_ENUM(style, draw->info->style, StyleType);
return style;
}
|
#font_weight=(weight) ⇒ Magick::WeightType, Numeric
The font weight can be one of the font weight constants or a number between 100 and 900
Set font weight.
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 |
# File 'ext/RMagick/rmdraw.cpp', line 280
VALUE
Draw_font_weight_eq(VALUE self, VALUE weight)
{
Draw *draw;
size_t w;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
if (FIXNUM_P(weight))
{
w = FIX2INT(weight);
if (w < 100 || w > 900)
{
rb_raise(rb_eArgError, "invalid font weight (%" RMIuSIZE " given)", w);
}
draw->info->weight = w;
}
else
{
VALUE_TO_ENUM(weight, w, WeightType);
switch (w)
{
case AnyWeight:
draw->info->weight = 0;
break;
case NormalWeight:
draw->info->weight = 400;
break;
case BoldWeight:
draw->info->weight = 700;
break;
case BolderWeight:
if (draw->info->weight <= 800)
draw->info->weight += 100;
break;
case LighterWeight:
if (draw->info->weight >= 100)
draw->info->weight -= 100;
break;
default:
rb_raise(rb_eArgError, "unknown font weight");
break;
}
}
return weight;
}
|
#gravity=(grav) ⇒ Magick::GravityType
Set gravity to draw text. Gravity affects text placement in bounding area according to rules:
-
NorthWestGravity
- text bottom-left corner placed at top-left -
NorthGravity
- text bottom-center placed at top-center -
NorthEastGravity
- text bottom-right corner placed at top-right -
WestGravity
- text left-center placed at left-center -
CenterGravity
- text center placed at center -
EastGravity
- text right-center placed at right-center -
SouthWestGravity
- text top-left placed at bottom-left -
SouthGravity
- text top-center placed at bottom-center -
SouthEastGravity
- text top-right placed at bottom-right
347 348 349 350 351 352 353 354 355 356 357 |
# File 'ext/RMagick/rmdraw.cpp', line 347
VALUE
Draw_gravity_eq(VALUE self, VALUE grav)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
VALUE_TO_ENUM(grav, draw->info->gravity, GravityType);
return grav;
}
|
#interline_spacing=(spacing) ⇒ Float
Set spacing between two lines.
384 385 386 387 388 389 390 391 392 393 |
# File 'ext/RMagick/rmdraw.cpp', line 384
VALUE
Draw_interline_spacing_eq(VALUE self, VALUE spacing)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
draw->info->interline_spacing = NUM2DBL(spacing);
return spacing;
}
|
#interword_spacing=(spacing) ⇒ Float
Set spacing between two words.
402 403 404 405 406 407 408 409 410 411 |
# File 'ext/RMagick/rmdraw.cpp', line 402
VALUE
Draw_interword_spacing_eq(VALUE self, VALUE spacing)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
draw->info->interword_spacing = NUM2DBL(spacing);
return spacing;
}
|
#kerning=(kerning) ⇒ Float
Set kerning as spacing between two letters.
366 367 368 369 370 371 372 373 374 375 |
# File 'ext/RMagick/rmdraw.cpp', line 366
VALUE
Draw_kerning_eq(VALUE self, VALUE kerning)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
draw->info->kerning = NUM2DBL(kerning);
return kerning;
}
|
#pointsize=(pointsize) ⇒ Float
Set point size to draw text.
634 635 636 637 638 639 640 641 642 643 |
# File 'ext/RMagick/rmdraw.cpp', line 634
VALUE
Draw_pointsize_eq(VALUE self, VALUE pointsize)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
draw->info->pointsize = NUM2DBL(pointsize);
return pointsize;
}
|
#rotation=(deg) ⇒ Float
Set rotation. The argument should be in degrees.
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 |
# File 'ext/RMagick/rmdraw.cpp', line 652
VALUE
Draw_rotation_eq(VALUE self, VALUE deg)
{
Draw *draw;
double degrees;
AffineMatrix affine, current;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
degrees = NUM2DBL(deg);
if (fabs(degrees) > DBL_EPSILON)
{
current = draw->info->affine;
affine.sx = cos(DegreesToRadians(fmod(degrees, 360.0)));
affine.rx = sin(DegreesToRadians(fmod(degrees, 360.0)));
affine.tx = 0.0;
affine.ry = (-sin(DegreesToRadians(fmod(degrees, 360.0))));
affine.sy = cos(DegreesToRadians(fmod(degrees, 360.0)));
affine.ty = 0.0;
draw->info->affine.sx = current.sx*affine.sx+current.ry*affine.rx;
draw->info->affine.rx = current.rx*affine.sx+current.sy*affine.rx;
draw->info->affine.ry = current.sx*affine.ry+current.ry*affine.sy;
draw->info->affine.sy = current.rx*affine.ry+current.sy*affine.sy;
draw->info->affine.tx = current.sx*affine.tx+current.ry*affine.ty+current.tx;
}
return deg;
}
|
#stroke=(stroke) ⇒ Magick::Pixel, String
Set stroke.
690 691 692 693 694 695 696 697 698 699 |
# File 'ext/RMagick/rmdraw.cpp', line 690
VALUE
Draw_stroke_eq(VALUE self, VALUE stroke)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
Color_to_PixelColor(&draw->info->stroke, stroke);
return stroke;
}
|
#stroke_pattern=(pattern) ⇒ Magick::Image
Accept an image as a stroke pattern.
710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 |
# File 'ext/RMagick/rmdraw.cpp', line 710
VALUE
Draw_stroke_pattern_eq(VALUE self, VALUE pattern)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
if (draw->info->stroke_pattern != NULL)
{
// Do not trace destruction
DestroyImage(draw->info->stroke_pattern);
draw->info->stroke_pattern = NULL;
}
if (!NIL_P(pattern))
{
Image *image;
// DestroyDrawInfo destroys the clone
pattern = rm_cur_image(pattern);
image = rm_check_destroyed(pattern);
// Do not trace creation
draw->info->stroke_pattern = rm_clone_image(image);
}
return pattern;
}
|
#stroke_width=(stroke_width) ⇒ Float
Set stroke width.
746 747 748 749 750 751 752 753 754 755 |
# File 'ext/RMagick/rmdraw.cpp', line 746
VALUE
Draw_stroke_width_eq(VALUE self, VALUE stroke_width)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
draw->info->stroke_width = NUM2DBL(stroke_width);
return stroke_width;
}
|
#text_antialias=(text_antialias) ⇒ Boolean
Set whether to enable text antialias.
764 765 766 767 768 769 770 771 772 773 |
# File 'ext/RMagick/rmdraw.cpp', line 764
VALUE
Draw_text_antialias_eq(VALUE self, VALUE text_antialias)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
draw->info->text_antialias = (MagickBooleanType) RTEST(text_antialias);
return text_antialias;
}
|
#tile=(image) ⇒ Magick::Image
Accept an image as a fill pattern. This is alias of #fill_pattern=.
782 783 784 785 786 |
# File 'ext/RMagick/rmdraw.cpp', line 782
VALUE
Draw_tile_eq(VALUE self, VALUE image)
{
return Draw_fill_pattern_eq(self, image);
}
|
#undercolor=(undercolor) ⇒ Magick::Pixel, String
Set undercolor.
795 796 797 798 799 800 801 802 803 804 |
# File 'ext/RMagick/rmdraw.cpp', line 795
VALUE
Draw_undercolor_eq(VALUE self, VALUE undercolor)
{
Draw *draw;
rb_check_frozen(self);
TypedData_Get_Struct(self, Draw, &rm_draw_data_type, draw);
Color_to_PixelColor(&draw->info->undercolor, undercolor);
return undercolor;
}
|