> So what i do: i take a screenshot of the picture produced (eps, viewed with > Evince) and can crop and resize it from there on. It is some work but it can > be done. I think this is the way to go... With this script you win another half year :)) run cs_eps2png test.eps and you get test-0.png test-1.png ... #!/bin/bash # cs_eps2png # convert csound eps file to png files [ $# -lt 1 ] && echo "Usage: $0 EPSFILE" && exit 1 [ ! -f "$1" ] && echo "$1: No such file" && exit 2 IMGFILE="${1%%.*}.png" convert -page 1000x680 -crop 470x420+90+140 "$1" -trim "$IMGFILE" exit tito Send bugs reports to the Sourceforge bug tracker https://sourceforge.net/tracker/?group_id=81968&atid=564599 Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"