diff options
author | Werner Almesberger <werner@almesberger.net> | 2016-09-03 16:01:04 -0300 |
---|---|---|
committer | Werner Almesberger <werner@almesberger.net> | 2016-09-03 19:52:24 -0300 |
commit | 13f0b12be13e584884f00c726873f83d70f2c1d9 (patch) | |
tree | d1205930c9866c898f7aa0c766fc52149b0175eb /README | |
parent | ef43492d8f72d192e98a1f31d6069ab250609d81 (diff) | |
download | eeshow-13f0b12be13e584884f00c726873f83d70f2c1d9.tar.gz eeshow-13f0b12be13e584884f00c726873f83d70f2c1d9.tar.bz2 eeshow-13f0b12be13e584884f00c726873f83d70f2c1d9.zip |
main/eeplot.c: combine front- and backend command line processing
... and do away with the -- option
Diffstat (limited to 'README')
-rw-r--r-- | README | 30 |
1 files changed, 16 insertions, 14 deletions
@@ -64,28 +64,30 @@ Invocation The general form of invocation for rendering is as follows: -eeplotfile.pro [file.sch] -- format [options] +eeplot -o output [options] file.pro [file.sch] or -eeplot [-1] [-e] file.lib ... file.sch -- format [options] +eeplot -o output [options] [-1] [-e] file.lib ... file.sch -Common if using PDF, the option -1 can be used (after "eeshow") to -process only one sheet, not recursing into sub-sheets. -e enables -the rendering of additional information, e.g., pin types. +The option -o is always required. The filename extension selects the +output driver, and can be overridden with the type: prefix. If selecting +standard output the type prefix is always required, e.g., png:- -For PDF and PNG, the options -s scale and -o output-file can be used to -control the size of the output and the output file. By default, eeshow -writes to standard output. +If using PDF, the option -1 can be used (after "eeshow") to process only +one sheet, not recursing into sub-sheets. -e enables the rendering of +additional information, e.g., pin types. + +For PDF and PNG, the option -s scale can be used to control the size of +the output. Examples: -eeplot test.lib test.sch -- png -s 2 -o test.png +eeplot -s 2 -o test.png test.lib test.sch -eeplot neo900.lib kicad-libs/components/powered.lib neo900.sch \ - -- pdf -o neo900.pdf +eeplot -o neo900.pdf neo900.lib kicad-libs/components/powered.lib neo900.sch -eeplot neo900.pro neo900_SS_4.sch -- pdf -o neo900-sheet04.pdf +eeplot -o neo900-sheet04.pdf neo900.pro neo900_SS_4.sch More details on the above example can be found in the file DEMO. @@ -96,8 +98,8 @@ Revision access If the files are stored in a git repository, a revisions can be selected by prefixing file names with the commit ID, e.g., -eeplot neo900.lib kicad-libs/components/powered.lib 6a9f71:neo900_SS_5.sch \ - -- png -s 2 -o old.png +eeplot -o old.png -s neo900.lib kicad-libs/components/powered.lib \ + 6a9f71:neo900_SS_5.sch \ Revision selection propagates to dependent files, unless explicitly overridden. E.g., the above example selects also revision 6a9f71 of |