浏览代码

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


正在加载...
取消
保存