![]() |
![]() |
![]() |
GIMP Library Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
gint32 gimp_text_layer_new (gint32 image_ID
,const gchar *text
,const gchar *fontname
,gdouble size
,GimpUnit unit
); gchar * gimp_text_layer_get_text (gint32 layer_ID
); gboolean gimp_text_layer_set_text (gint32 layer_ID
,const gchar *text
); gchar * gimp_text_layer_get_markup (gint32 layer_ID
); gchar * gimp_text_layer_get_font (gint32 layer_ID
); gboolean gimp_text_layer_set_font (gint32 layer_ID
,const gchar *font
); gdouble gimp_text_layer_get_font_size (gint32 layer_ID
,GimpUnit *unit
); gboolean gimp_text_layer_set_font_size (gint32 layer_ID
,gdouble font_size
,GimpUnit unit
); gboolean gimp_text_layer_get_hinting (gint32 layer_ID
,gboolean *autohint
); gboolean gimp_text_layer_set_hinting (gint32 layer_ID
,gboolean hinting
,gboolean autohint
); gboolean gimp_text_layer_get_antialias (gint32 layer_ID
); gboolean gimp_text_layer_set_antialias (gint32 layer_ID
,gboolean antialias
); gboolean gimp_text_layer_get_kerning (gint32 layer_ID
); gboolean gimp_text_layer_set_kerning (gint32 layer_ID
,gboolean kerning
); gchar * gimp_text_layer_get_language (gint32 layer_ID
); gboolean gimp_text_layer_set_language (gint32 layer_ID
,const gchar *language
); GimpTextDirection gimp_text_layer_get_base_direction (gint32 layer_ID
); gboolean gimp_text_layer_set_base_direction (gint32 layer_ID
,GimpTextDirection direction
); GimpTextJustification gimp_text_layer_get_justification (gint32 layer_ID
); gboolean gimp_text_layer_set_justification (gint32 layer_ID
,GimpTextJustification justify
); gboolean gimp_text_layer_get_color (gint32 layer_ID
,GimpRGB *color
); gboolean gimp_text_layer_set_color (gint32 layer_ID
,const GimpRGB *color
); gdouble gimp_text_layer_get_indent (gint32 layer_ID
); gboolean gimp_text_layer_set_indent (gint32 layer_ID
,gdouble indent
); gdouble gimp_text_layer_get_line_spacing (gint32 layer_ID
); gboolean gimp_text_layer_set_line_spacing (gint32 layer_ID
,gdouble line_spacing
); gdouble gimp_text_layer_get_letter_spacing (gint32 layer_ID
); gboolean gimp_text_layer_set_letter_spacing (gint32 layer_ID
,gdouble letter_spacing
); GimpTextHintStyle gimp_text_layer_get_hint_style (gint32 layer_ID
); gboolean gimp_text_layer_set_hint_style (gint32 layer_ID
,GimpTextHintStyle style
); gboolean gimp_text_layer_resize (gint32 layer_ID
,gdouble width
,gdouble height
);
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()
.
|
The image. |
|
The text to generate (in UTF-8 encoding). |
|
The name of the font. |
|
The size of text in either pixels or points. |
|
The units of specified size. |
Returns : |
The new text layer. |
Since GIMP 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.
|
The text layer. |
Returns : |
The text from the specified text layer. |
Since GIMP 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.
|
The text layer. |
|
The new text to set. |
Returns : |
TRUE on success. |
Since GIMP 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 http://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.
|
The text layer. |
Returns : |
The markup which represents the style of the specified text layer. |
Since GIMP 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.
|
The text layer. |
Returns : |
The font which is used in the specified text layer. |
Since GIMP 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.
|
The text layer. |
|
The new font to use. |
Returns : |
TRUE on success. |
Since GIMP 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.
|
The text layer. |
|
The unit used for the font size. |
Returns : |
The font size. |
Since GIMP 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.
|
The text layer. |
|
The font size. |
|
The unit to use for the font size. |
Returns : |
TRUE on success. |
Since GIMP 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.
|
The text layer. |
|
A flag which is true if the text layer is forced to use the autohinter from FreeType. |
Returns : |
A flag which is true if hinting is used on the font. |
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.
|
The text layer. |
|
Enable/disable the use of hinting on the text. |
|
Force the use of the autohinter provided through FreeType. |
Returns : |
TRUE on success. |
Since GIMP 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.
|
The text layer. |
Returns : |
A flag which is true if antialiasing is used for rendering the font in the text layer. |
Since GIMP 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.
|
The text layer. |
|
Enable/disable antialiasing of the text. |
Returns : |
TRUE on success. |
Since GIMP 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.
|
The text layer. |
Returns : |
A flag which is true if kerning is used in the text layer. |
Since GIMP 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.
|
The text layer. |
|
Enable/disable kerning in the text. |
Returns : |
TRUE on success. |
Since GIMP 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.
|
The text layer. |
Returns : |
The language used in the text layer. |
Since GIMP 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.
|
The text layer. |
|
The new language to use for the text layer. |
Returns : |
TRUE on success. |
Since GIMP 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
|
The text layer. |
Returns : |
The based direction used for the text layer. |
Since GIMP 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.
|
The text layer. |
|
The base direction of the text. |
Returns : |
TRUE on success. |
Since GIMP 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.
|
The text layer. |
Returns : |
The justification used in the text layer. |
Since GIMP 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.
|
The text layer. |
|
The justification for your text. |
Returns : |
TRUE on success. |
Since GIMP 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.
|
The text layer. |
|
The color of the text. |
Returns : |
TRUE on success. |
Since GIMP 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'.
|
The text layer. |
|
The color to use for the text. |
Returns : |
TRUE on success. |
Since GIMP 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.
|
The text layer. |
Returns : |
The indentation value of the first line. |
Since GIMP 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.
|
The text layer. |
|
The indentation for the first line. |
Returns : |
TRUE on success. |
Since GIMP 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.
|
The text layer. |
Returns : |
The line-spacing value. |
Since GIMP 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.
|
The text layer. |
|
The additional line spacing to use. |
Returns : |
TRUE on success. |
Since GIMP 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 glyps in a text layer.
|
The text layer. |
Returns : |
The letter-spacing value. |
Since GIMP 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.
|
The text layer. |
|
The additional letter spacing to use. |
Returns : |
TRUE on success. |
Since GIMP 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.
|
The text layer. |
Returns : |
The hint style used for font outlines. |
Since GIMP 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.
|
The text layer. |
|
The new hint style. |
Returns : |
TRUE on success. |
Since GIMP 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.
|
The text layer. |
|
The new box width in pixels. |
|
The new box height in pixels. |
Returns : |
TRUE on success. |
Since GIMP 2.8