mirror of
git://projects.qi-hardware.com/antorcha.git
synced 2024-11-01 14:03:08 +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"
11 lines
144 B
Bash
Executable File
11 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
(
|
|
cat <<EOF
|
|
#set xrange [0:255]
|
|
#set yrange [0:63]
|
|
set size ratio -1
|
|
plot "-" with points pt 7 notitle
|
|
EOF
|
|
cat
|
|
) | gnuplot -persist
|