Method
PangoLayoutget_pixel_size
Declaration [src]
void
pango_layout_get_pixel_size (
PangoLayout* layout,
int* width,
int* height
)
Description [src]
Determines the logical width and height of a PangoLayout
in device units.
pango_layout_get_size()
returns the width and height
scaled by PANGO_SCALE
. This is simply a convenience function
around pango_layout_get_pixel_extents()
.
Parameters
width |
int* |
Location to store the logical width. |
|
The argument will be set by the function. | |
The argument can be NULL . | |
The instance takes ownership of the data, and is responsible for freeing it. | |
height |
int* |
Location to store the logical height. |
|
The argument will be set by the function. | |
The argument can be NULL . | |
The instance takes ownership of the data, and is responsible for freeing it. |