gschem: Select newly-pasted objects
[geda-gaf.git] / gschem / scripts / image.scm
blob6c315cf3b505f405ad65185a009b26f9468293ca
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"
10 (image-size 1024 768)
11 ;(image-size 3200 2400)
12 (image-color "enabled")
13 ;(image-color "disabled")
15 ; You need call this after you call any rc file function
16 (gschem-use-rc-values)
18 ; filename is specified on the command line
19 (gschem-image "dummyfilename")
21 (format (current-error-port)
22 "WARNING: Exporting images with 'image.scm' is deprecated.
24 Please use `gaf export' instead.  See `man gaf' for details.
28 (gschem-exit)