Top |
gint32 gimp_text_layer_new (gint32 image_ID
,const gchar *text
,const gchar *fontname
,gdouble size
,GimpUnit unit
);
Creates a new text layer.
This procedure creates a new text layer. The arguments are kept as
simple as necessary for the normal case. All text attributes,
however, can be modified with the appropriate
gimp_text_layer_set_*() procedures. The new layer still needs to be
added to the image, as this is not automatic. Add the new layer
using gimp_image_insert_layer()
.
image_ID |
The image. |
|
text |
The text to generate (in UTF-8 encoding). |
|
fontname |
The name of the font. |
|
size |
The size of text in either pixels or points. |
|
unit |
The units of specified size. |
Since: 2.6
gchar *
gimp_text_layer_get_text (gint32 layer_ID
);
Get the text from a text layer as string.
This procedure returns the text from a text layer as a string.
Since: 2.6
gboolean gimp_text_layer_set_text (gint32 layer_ID
,const gchar *text
);
Set the text of a text layer.
This procedure changes the text of a text layer.
Since: 2.6
gchar *
gimp_text_layer_get_markup (gint32 layer_ID
);
Get the markup from a text layer as string.
This procedure returns the markup of the styles from a text layer. The markup will be in the form of Pango's markup - See https://www.pango.org/ for more information about Pango and its markup. Note: Setting the markup of a text layer using Pango's markup is not supported for now.
Since: 2.8
gchar *
gimp_text_layer_get_font (gint32 layer_ID
);
Get the font from a text layer as string.
This procedure returns the name of the font from a text layer.
Since: 2.6
gboolean gimp_text_layer_set_font (gint32 layer_ID
,const gchar *font
);
Set the font of a text layer.
This procedure modifies the font used in the specified text layer.
Since: 2.6
gdouble gimp_text_layer_get_font_size (gint32 layer_ID
,GimpUnit *unit
);
Get the font size from a text layer.
This procedure returns the size of the font which is used in a text layer. You will receive the size as a float 'font-size' in 'unit' units.
Since: 2.6
gboolean gimp_text_layer_set_font_size (gint32 layer_ID
,gdouble font_size
,GimpUnit unit
);
Set the font size.
This procedure changes the font size of a text layer. The size of your font will be a double 'font-size' of 'unit' units.
layer_ID |
The text layer. |
|
font_size |
The font size. |
|
unit |
The unit to use for the font size. |
Since: 2.6
gboolean gimp_text_layer_get_hinting (gint32 layer_ID
,gboolean *autohint
);
gimp_text_layer_get_hinting
is deprecated and should not be used in newly-written code.
Use gimp_text_layer_get_hint_style()
instead.
gboolean gimp_text_layer_set_hinting (gint32 layer_ID
,gboolean hinting
,gboolean autohint
);
gimp_text_layer_set_hinting
is deprecated and should not be used in newly-written code.
Use gimp_text_layer_set_hint_style()
instead.
Enable/disable the use of hinting in a text layer.
This procedure enables or disables hinting on the text of a text layer. If you enable 'auto-hint', FreeType\'s automatic hinter will be used and hinting information from the font will be ignored.
layer_ID |
The text layer. |
|
hinting |
Enable/disable the use of hinting on the text. |
|
autohint |
Force the use of the autohinter provided through FreeType. |
Since: 2.6
gboolean
gimp_text_layer_get_antialias (gint32 layer_ID
);
Check if antialiasing is used in the text layer.
This procedure checks if antialiasing is enabled in the specified text layer.
Since: 2.6
gboolean gimp_text_layer_set_antialias (gint32 layer_ID
,gboolean antialias
);
Enable/disable anti-aliasing in a text layer.
This procedure enables or disables anti-aliasing of the text in a text layer.
Since: 2.6
gboolean
gimp_text_layer_get_kerning (gint32 layer_ID
);
Check if kerning is used in the text layer.
This procedure checks if kerning is enabled in the specified text layer.
Since: 2.6
gboolean gimp_text_layer_set_kerning (gint32 layer_ID
,gboolean kerning
);
Enable/disable kerning in a text layer.
This procedure enables or disables kerning in a text layer.
Since: 2.6
gchar *
gimp_text_layer_get_language (gint32 layer_ID
);
Get the language used in the text layer.
This procedure returns the language string which is set for the text in the text layer.
Since: 2.6
gboolean gimp_text_layer_set_language (gint32 layer_ID
,const gchar *language
);
Set the language of the text layer.
This procedure sets the language of the text in text layer. For some scripts the language has an influence of how the text is rendered.
Since: 2.6
GimpTextDirection
gimp_text_layer_get_base_direction (gint32 layer_ID
);
Get the base direction used for rendering the text layer.
This procedure returns the base direction used for rendering the text in the text layer
Since: 2.6
gboolean gimp_text_layer_set_base_direction (gint32 layer_ID
,GimpTextDirection direction
);
Set the base direction in the text layer.
This procedure sets the base direction used in applying the Unicode bidirectional algorithm when rendering the text.
Since: 2.6
GimpTextJustification
gimp_text_layer_get_justification (gint32 layer_ID
);
Get the text justification information of the text layer.
This procedure returns the alignment of the lines in the text layer relative to each other.
Since: 2.6
gboolean gimp_text_layer_set_justification (gint32 layer_ID
,GimpTextJustification justify
);
Set the justification of the text in a text layer.
This procedure sets the alignment of the lines in the text layer relative to each other.
Since: 2.6
gboolean gimp_text_layer_get_color (gint32 layer_ID
,GimpRGB *color
);
Get the color of the text in a text layer.
This procedure returns the color of the text in a text layer.
Since: 2.6
gboolean gimp_text_layer_set_color (gint32 layer_ID
,const GimpRGB *color
);
Set the color of the text in the text layer.
This procedure sets the text color in the text layer 'layer'.
Since: 2.6
gdouble
gimp_text_layer_get_indent (gint32 layer_ID
);
Get the line indentation of text layer.
This procedure returns the indentation of the first line in a text layer.
Since: 2.6
gboolean gimp_text_layer_set_indent (gint32 layer_ID
,gdouble indent
);
Set the indentation of the first line in a text layer.
This procedure sets the indentation of the first line in the text layer.
Since: 2.6
gdouble
gimp_text_layer_get_line_spacing (gint32 layer_ID
);
Get the spacing between lines of text.
This procedure returns the line-spacing between lines of text in a text layer.
Since: 2.6
gboolean gimp_text_layer_set_line_spacing (gint32 layer_ID
,gdouble line_spacing
);
Adjust the line spacing in a text layer.
This procedure sets the additional spacing used between lines a text layer.
Since: 2.6
gdouble
gimp_text_layer_get_letter_spacing (gint32 layer_ID
);
Get the letter spacing used in a text layer.
This procedure returns the additional spacing between the single glyphs in a text layer.
Since: 2.6
gboolean gimp_text_layer_set_letter_spacing (gint32 layer_ID
,gdouble letter_spacing
);
Adjust the letter spacing in a text layer.
This procedure sets the additional spacing between the single glyphs in a text layer.
Since: 2.6
GimpTextHintStyle
gimp_text_layer_get_hint_style (gint32 layer_ID
);
Get information about hinting in the specified text layer.
This procedure provides information about the hinting that is being used in a text layer. Hinting can be optimized for fidelity or contrast or it can be turned entirely off.
Since: 2.8
gboolean gimp_text_layer_set_hint_style (gint32 layer_ID
,GimpTextHintStyle style
);
Control how font outlines are hinted in a text layer.
This procedure sets the hint style for font outlines in a text layer. This controls whether to fit font outlines to the pixel grid, and if so, whether to optimize for fidelity or contrast.
Since: 2.8
gboolean gimp_text_layer_resize (gint32 layer_ID
,gdouble width
,gdouble height
);
Resize the box of a text layer.
This procedure changes the width and height of a text layer while
keeping it as a text layer and not converting it to a bitmap like
gimp_layer_resize()
would do.
layer_ID |
The text layer. |
|
width |
The new box width in pixels. |
|
height |
The new box height in pixels. |
Since: 2.8