The Lurker's Guide to Babylon 5
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
297 B

17 years ago
  1. #!/bin/csh
  2. @ x=0
  3. @ y=0
  4. @ r=0
  5. @ h=24
  6. @ pal=32
  7. @ wid=999
  8. @ maxwid=5
  9. while ($y < 408)
  10. @ x = 0
  11. convert +dither -crop ${wid}x${h}+0+${y} -colors $pal $1 r${r}.miff
  12. while ($x < ${maxwid})
  13. convert -crop 100x999+${x}00+0 r${r}.miff r${r}c${x}.gif
  14. echo $x $r
  15. @ x++
  16. end
  17. @ y += $h
  18. @ r++
  19. end