Class: Magick::Image::DrawOptions
- Inherits:
-
Object
- Object
- Magick::Image::DrawOptions
- Defined in:
- ext/RMagick/rmmain.c
Instance Method Summary collapse
-
#initialize ⇒ Object
constructor
Method: DrawOptions#initialize Purpose: Initialize a DrawOptions object.
Constructor Details
#initialize ⇒ Object
Method: DrawOptions#initialize Purpose: Initialize a DrawOptions object
968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 |
# File 'ext/RMagick/rmdraw.c', line 968
VALUE
DrawOptions_initialize(VALUE self)
{
Draw *draw_options;
Data_Get_Struct(self, Draw, draw_options);
draw_options->info = magick_malloc(sizeof(DrawInfo));
if (!draw_options->info)
{
rb_raise(rb_eNoMemError, "not enough memory to continue");
}
GetDrawInfo(NULL, draw_options->info);
if (rb_block_given_p())
{
// Run the block in self's context
(void) rb_obj_instance_eval(0, NULL, self);
}
return self;
}
|