Procházet zdrojové kódy

* Fixed postscript exporter, image in not at the bottom of the page anymore

tags/v0.99.beta14
Jean-Yves Lamoureux jylam před 18 roky
rodič
revize
5612b86ce6
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. +2
    -0
      cucul/export.c

+ 2
- 0
cucul/export.c Zobrazit soubor

@@ -587,6 +587,7 @@ static void export_ps(cucul_canvas_t *cv, cucul_buffer_t *ex)

/* Header */
cur += sprintf(cur, "%s", ps_header);
cur += sprintf(cur, "0 %d translate\n", cv->height);

/* Background, drawn using csquare macro defined in header */
for(y = cv->height; y--; )
@@ -608,6 +609,7 @@ static void export_ps(cucul_canvas_t *cv, cucul_buffer_t *ex)
}

cur += sprintf(cur, "grestore\n"); /* Restore transformation matrix */
cur += sprintf(cur, "0 %d translate\n", cv->height*10);

for(y = cv->height; y--; )
{


Načítá se…
Zrušit
Uložit