diff options
author | Werner Almesberger <werner@almesberger.net> | 2016-09-04 23:35:24 -0300 |
---|---|---|
committer | Werner Almesberger <werner@almesberger.net> | 2016-09-04 23:56:29 -0300 |
commit | 0f2d1d5fc7ce8019641c7e96cecaa5db4f5b076c (patch) | |
tree | 60fe612b74ca93ee7ab30c554a64de46957fc0fe /main/eeplot.c | |
parent | 73d03be3950c5f1d67d15f430d75195a9f3656b6 (diff) | |
download | eeshow-0f2d1d5fc7ce8019641c7e96cecaa5db4f5b076c.tar.gz eeshow-0f2d1d5fc7ce8019641c7e96cecaa5db4f5b076c.tar.bz2 eeshow-0f2d1d5fc7ce8019641c7e96cecaa5db4f5b076c.zip |
add Postscript (through Cairo) support
Diffstat (limited to 'main/eeplot.c')
-rw-r--r-- | main/eeplot.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/eeplot.c b/main/eeplot.c index 6d425cf..3721508 100644 --- a/main/eeplot.c +++ b/main/eeplot.c @@ -40,6 +40,7 @@ static struct gfx_ops const *ops_list[] = { &fig_ops, &cro_png_ops, &cro_pdf_ops, + &cro_ps_ops, }; @@ -113,7 +114,7 @@ void usage(const char *name) " -t template.fig merge this file with generated output\n" " -D var=value substitute \"<var>\" with \"value\" in template\n" "\n" -"PNG files:\n" +"PNG and Postscript files:\n" " [-s scale]\n" "\n" " -s scale scale by indicated factor (default: 1.0)\n" |