mirror of
git://projects.qi-hardware.com/antorcha.git
synced 2024-11-01 21:34:04 +02:00
a5694eba05
txt2xbm: convert text to XBM, using ghostscript stretch: resample XBM with rotation correction (x-axis only) xbm2gp: convert XBM to gnuplot, taking into account rotation plot: plot xbm2gp output t: run all the above to display "TEST"
10 lines
155 B
Bash
Executable File
10 lines
155 B
Bash
Executable File
#!/bin/sh
|
|
gs -sDEVICE=pbmraw -sOutputFile=- -g256x64 -q - <<EOF | pbmtoxbm
|
|
/Helvetica-Bold findfont
|
|
80 scalefont
|
|
setfont
|
|
0 4 moveto
|
|
($1) show
|
|
showpage
|
|
EOF
|