74 lines
2.1 KiB
Diff
74 lines
2.1 KiB
Diff
|
|
diff -uprN paps-0.6.8_raw/src/libpaps.c paps-0.6.8/src/libpaps.c
|
||
|
|
--- paps-0.6.8_raw/src/libpaps.c 2020-01-15 10:15:32.951498063 +0000
|
||
|
|
+++ paps-0.6.8/src/libpaps.c 2020-01-15 10:17:00.573044177 +0000
|
||
|
|
@@ -251,7 +251,6 @@ gchar *paps_layout_line_to_postscript_st
|
||
|
|
{
|
||
|
|
paps_private_t *paps = (paps_private_t*)paps_;
|
||
|
|
GString *layout_str = g_string_new("");
|
||
|
|
- gchar *ret_str;
|
||
|
|
|
||
|
|
add_line_to_postscript(paps,
|
||
|
|
layout_str,
|
||
|
|
@@ -259,10 +258,7 @@ gchar *paps_layout_line_to_postscript_st
|
||
|
|
pos_y,
|
||
|
|
layout_line);
|
||
|
|
|
||
|
|
- ret_str = layout_str->str;
|
||
|
|
- g_string_free(layout_str, FALSE);
|
||
|
|
-
|
||
|
|
- return ret_str;
|
||
|
|
+ return g_string_free(layout_str, FALSE);
|
||
|
|
}
|
||
|
|
|
||
|
|
static void
|
||
|
|
@@ -408,9 +404,26 @@ static void draw_contour(paps_private_t
|
||
|
|
{
|
||
|
|
GSList *runs_list;
|
||
|
|
double scale = 72.0 / PANGO_SCALE / PAPS_DPI;
|
||
|
|
+ PangoGlyphUnit avg_width = 1;
|
||
|
|
|
||
|
|
g_string_append(layout_str, "(");
|
||
|
|
-
|
||
|
|
+
|
||
|
|
+ if (paps->cpi > 0.0L)
|
||
|
|
+ {
|
||
|
|
+ /* calculate approximate width per a character */
|
||
|
|
+ for (runs_list = pango_line->runs; runs_list != NULL; runs_list = g_slist_next(runs_list))
|
||
|
|
+ {
|
||
|
|
+ PangoLayoutRun *run = runs_list->data;
|
||
|
|
+ PangoGlyphString *glyphs = run->glyphs;
|
||
|
|
+ int i;
|
||
|
|
+
|
||
|
|
+ for (i = 0; i < glyphs->num_glyphs; i++)
|
||
|
|
+ {
|
||
|
|
+ if (glyphs->glyphs[i].glyph != PANGO_GLYPH_EMPTY)
|
||
|
|
+ avg_width = MAX (avg_width, glyphs->glyphs[i].geometry.width);
|
||
|
|
+ }
|
||
|
|
+ }
|
||
|
|
+ }
|
||
|
|
/* Loop over the runs and output font info */
|
||
|
|
runs_list = pango_line->runs;
|
||
|
|
double x_pos = line_start_pos_x;
|
||
|
|
@@ -433,11 +446,16 @@ static void draw_contour(paps_private_t
|
||
|
|
glyph_pos_x = x_pos + 1.0*geometry.x_offset * scale;
|
||
|
|
glyph_pos_y = line_start_pos_y - 1.0*geometry.y_offset * scale;
|
||
|
|
|
||
|
|
- if (paps->cpi > 0.0L) {
|
||
|
|
- x_pos += (1 / paps->cpi * 72.0);
|
||
|
|
- } else {
|
||
|
|
- x_pos += geometry.width * scale * paps->scale_x;
|
||
|
|
- }
|
||
|
|
+ if (paps->cpi > 0.0L)
|
||
|
|
+ {
|
||
|
|
+ double n = ((double)geometry.width) / avg_width;
|
||
|
|
+
|
||
|
|
+ x_pos += n * (1 / paps->cpi * 72.0);
|
||
|
|
+ }
|
||
|
|
+ else
|
||
|
|
+ {
|
||
|
|
+ x_pos += geometry.width * scale * paps->scale_x;
|
||
|
|
+ }
|
||
|
|
|
||
|
|
if (glyphs->glyphs[glyph_idx].glyph == PANGO_GLYPH_EMPTY)
|
||
|
|
continue;
|