![]() |
![]() |
![]() |
GIMP Library Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
gboolean gimp_by_color_select (gint32 drawable_ID
,const GimpRGB *color
,gint threshold
,GimpChannelOps operation
,gboolean antialias
,gboolean feather
,gdouble feather_radius
,gboolean sample_merged
); gboolean gimp_by_color_select_full (gint32 drawable_ID
,const GimpRGB *color
,gint threshold
,GimpChannelOps operation
,gboolean antialias
,gboolean feather
,gdouble feather_radius_x
,gdouble feather_radius_y
,gboolean sample_merged
,gboolean select_transparent
,GimpSelectCriterion select_criterion
); gboolean gimp_ellipse_select (gint32 image_ID
,gdouble x
,gdouble y
,gdouble width
,gdouble height
,GimpChannelOps operation
,gboolean antialias
,gboolean feather
,gdouble feather_radius
); gboolean gimp_free_select (gint32 image_ID
,gint num_segs
,const gdouble *segs
,GimpChannelOps operation
,gboolean antialias
,gboolean feather
,gdouble feather_radius
); gboolean gimp_fuzzy_select (gint32 drawable_ID
,gdouble x
,gdouble y
,gint threshold
,GimpChannelOps operation
,gboolean antialias
,gboolean feather
,gdouble feather_radius
,gboolean sample_merged
); gboolean gimp_fuzzy_select_full (gint32 drawable_ID
,gdouble x
,gdouble y
,gint threshold
,GimpChannelOps operation
,gboolean antialias
,gboolean feather
,gdouble feather_radius_x
,gdouble feather_radius_y
,gboolean sample_merged
,gboolean select_transparent
,GimpSelectCriterion select_criterion
); gboolean gimp_rect_select (gint32 image_ID
,gdouble x
,gdouble y
,gdouble width
,gdouble height
,GimpChannelOps operation
,gboolean feather
,gdouble feather_radius
); gboolean gimp_round_rect_select (gint32 image_ID
,gdouble x
,gdouble y
,gdouble width
,gdouble height
,gdouble corner_radius_x
,gdouble corner_radius_y
,GimpChannelOps operation
,gboolean antialias
,gboolean feather
,gdouble feather_radius_x
,gdouble feather_radius_y
);
gboolean gimp_by_color_select (gint32 drawable_ID
,const GimpRGB *color
,gint threshold
,GimpChannelOps operation
,gboolean antialias
,gboolean feather
,gdouble feather_radius
,gboolean sample_merged
);
gimp_by_color_select
is deprecated and should not be used in newly-written code. Use gimp_image_select_color()
instead.
|
The affected drawable. |
|
The color to select. |
|
Threshold in intensity levels. |
|
The selection operation. |
|
Antialiasing. |
|
Feather option for selections. |
|
Radius for feather operation. |
|
Use the composite image, not the drawable. |
Returns : |
TRUE on success. |
gboolean gimp_by_color_select_full (gint32 drawable_ID
,const GimpRGB *color
,gint threshold
,GimpChannelOps operation
,gboolean antialias
,gboolean feather
,gdouble feather_radius_x
,gdouble feather_radius_y
,gboolean sample_merged
,gboolean select_transparent
,GimpSelectCriterion select_criterion
);
gimp_by_color_select_full
is deprecated and should not be used in newly-written code. Use gimp_image_select_color()
instead.
|
The affected drawable. |
|
The color to select. |
|
Threshold in intensity levels. |
|
The selection operation. |
|
Antialiasing. |
|
Feather option for selections. |
|
Radius for feather operation in X direction. |
|
Radius for feather operation in Y direction. |
|
Use the composite image, not the drawable. |
|
Whether to consider transparent pixels for selection. If TRUE, transparency is considered as a unique selectable color. |
|
The criterion used to determine color similarity. SELECT_CRITERION_COMPOSITE is the standard choice. |
Returns : |
TRUE on success. |
Since GIMP 2.4
gboolean gimp_ellipse_select (gint32 image_ID
,gdouble x
,gdouble y
,gdouble width
,gdouble height
,GimpChannelOps operation
,gboolean antialias
,gboolean feather
,gdouble feather_radius
);
gimp_ellipse_select
is deprecated and should not be used in newly-written code. Use gimp_image_select_ellipse()
instead.
|
The image. |
|
x coordinate of upper-left corner of ellipse bounding box. |
|
y coordinate of upper-left corner of ellipse bounding box. |
|
The width of the ellipse. |
|
The height of the ellipse. |
|
The selection operation. |
|
Antialiasing. |
|
Feather option for selections. |
|
Radius for feather operation. |
Returns : |
TRUE on success. |
gboolean gimp_free_select (gint32 image_ID
,gint num_segs
,const gdouble *segs
,GimpChannelOps operation
,gboolean antialias
,gboolean feather
,gdouble feather_radius
);
gimp_free_select
is deprecated and should not be used in newly-written code. Use gimp_image_select_polygon()
instead.
|
The image. |
|
Number of points (count 1 coordinate as two points). |
|
Array of points: { p1.x, p1.y, p2.x, p2.y, ..., pn.x, pn.y}. |
|
The selection operation. |
|
Antialiasing. |
|
Feather option for selections. |
|
Radius for feather operation. |
Returns : |
TRUE on success. |
gboolean gimp_fuzzy_select (gint32 drawable_ID
,gdouble x
,gdouble y
,gint threshold
,GimpChannelOps operation
,gboolean antialias
,gboolean feather
,gdouble feather_radius
,gboolean sample_merged
);
gimp_fuzzy_select
is deprecated and should not be used in newly-written code. Use gimp_image_select_contiguous_color()
instead.
|
The affected drawable. |
|
x coordinate of initial seed fill point: (image coordinates). |
|
y coordinate of initial seed fill point: (image coordinates). |
|
Threshold in intensity levels. |
|
The selection operation. |
|
Antialiasing. |
|
Feather option for selections. |
|
Radius for feather operation. |
|
Use the composite image, not the drawable. |
Returns : |
TRUE on success. |
gboolean gimp_fuzzy_select_full (gint32 drawable_ID
,gdouble x
,gdouble y
,gint threshold
,GimpChannelOps operation
,gboolean antialias
,gboolean feather
,gdouble feather_radius_x
,gdouble feather_radius_y
,gboolean sample_merged
,gboolean select_transparent
,GimpSelectCriterion select_criterion
);
gimp_fuzzy_select_full
is deprecated and should not be used in newly-written code. Use gimp_image_select_contiguous_color()
instead.
|
The affected drawable. |
|
x coordinate of initial seed fill point: (image coordinates). |
|
y coordinate of initial seed fill point: (image coordinates). |
|
Threshold in intensity levels. |
|
The selection operation. |
|
Antialiasing. |
|
Feather option for selections. |
|
Radius for feather operation in X direction. |
|
Radius for feather operation in Y direction. |
|
Use the composite image, not the drawable. |
|
Whether to consider transparent pixels for selection. If TRUE, transparency is considered as a unique selectable color. |
|
The criterion used to determine color similarity. SELECT_CRITERION_COMPOSITE is the standard choice. |
Returns : |
TRUE on success. |
Since GIMP 2.4
gboolean gimp_rect_select (gint32 image_ID
,gdouble x
,gdouble y
,gdouble width
,gdouble height
,GimpChannelOps operation
,gboolean feather
,gdouble feather_radius
);
gimp_rect_select
is deprecated and should not be used in newly-written code. Use gimp_image_select_rectangle()
instead.
|
The image. |
|
x coordinate of upper-left corner of rectangle. |
|
y coordinate of upper-left corner of rectangle. |
|
The width of the rectangle. |
|
The height of the rectangle. |
|
The selection operation. |
|
Feather option for selections. |
|
Radius for feather operation. |
Returns : |
TRUE on success. |
gboolean gimp_round_rect_select (gint32 image_ID
,gdouble x
,gdouble y
,gdouble width
,gdouble height
,gdouble corner_radius_x
,gdouble corner_radius_y
,GimpChannelOps operation
,gboolean antialias
,gboolean feather
,gdouble feather_radius_x
,gdouble feather_radius_y
);
gimp_round_rect_select
is deprecated and should not be used in newly-written code. Use gimp_image_select_round_rectangle()
instead.
|
The image. |
|
x coordinate of upper-left corner of rectangle. |
|
y coordinate of upper-left corner of rectangle. |
|
The width of the rectangle. |
|
The height of the rectangle. |
|
The corner radius in X direction. |
|
The corner radius in Y direction. |
|
The selection operation. |
|
Antialiasing. |
|
Feather option for selections. |
|
Radius for feather operation in X direction. |
|
Radius for feather operation in Y direction. |
Returns : |
TRUE on success. |
Since GIMP 2.4