mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-03 20:38:10 +02:00
cairo svg: Use \n instead of /n in bitmap fonts
Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
b56b971141
commit
2a7f133639
1 changed files with 1 additions and 1 deletions
|
|
@ -808,7 +808,7 @@ _cairo_svg_document_emit_bitmap_glyph_data (cairo_svg_document_t *document,
|
|||
_cairo_output_stream_printf (document->xml_node_glyphs, "<g");
|
||||
_cairo_svg_surface_emit_transform (document->xml_node_glyphs, " transform",
|
||||
&image->base.device_transform_inverse, NULL);
|
||||
_cairo_output_stream_printf (document->xml_node_glyphs, ">/n");
|
||||
_cairo_output_stream_printf (document->xml_node_glyphs, ">\n");
|
||||
|
||||
for (y = 0, row = image->data, rows = image->height; rows; row += image->stride, rows--, y++) {
|
||||
for (x = 0, byte = row, cols = (image->width + 7) / 8; cols; byte++, cols--) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue