Struct
RsvgDimensionData
deprecated: 2.46.
Description [src]
struct RsvgDimensionData {
int width;
int height;
gdouble em;
gdouble ex;
}
Dimensions of an SVG image from rsvg_handle_get_dimensions()
, or an
individual element from rsvg_handle_get_dimensions_sub()
. Please see
the deprecation documentation for those functions.
Structure members
width:
int
SVG’s width, in pixels.
height:
int
SVG’s height, in pixels.
em:
gdouble
SVG’s original width, unmodified by
RsvgSizeFunc
.ex:
gdouble
SVG’s original height, unmodified by
RsvgSizeFunc
.
Deprecated since: 2.46..
Use rsvg_handle_get_intrinsic_size_in_pixels()
or
rsvg_handle_get_geometry_for_layer()
instead.