瀏覽代碼

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

tags/v0.99.beta14
Jean-Yves Lamoureux jylam 18 年之前
父節點
當前提交
5612b86ce6
共有 1 個檔案被更改,包括 2 行新增0 行删除
  1. +2
    -0
      cucul/export.c

+ 2
- 0
cucul/export.c 查看文件

@@ -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--; )
{


Loading…
取消
儲存