]> www.fi.muni.cz Git - heater.git/blob - image.scm
Initial revision
[heater.git] / image.scm
1 ;; $Id$
2 ;;
3 ;; This file may be used to produce png files from gschem schematics from the
4 ;; command line.  Typical usage is:
5 ;;
6 ;;   gschem -p -o mysch.png -s /path/to/this/file/image.scm mysch.sch
7 ;;
8 ;; The schematic in "mysch.sch" will be exported to the file "mysch.png"
9
10 (image-size 1024 768)
11 ;(image-size 3200 2400)
12 (image-color "enabled")
13 ;(image-color "disabled")
14
15 ; You need call this after you call any rc file function
16 (gschem-use-rc-values)
17
18 ; filename is specified on the command line
19 (gschem-image "dummyfilename")
20
21 (gschem-exit)