plan9port

[fork] Plan 9 from user space
git clone git://src.adamsgaard.dk/plan9port # fast
git clone https://src.adamsgaard.dk/plan9port.git # slow
Log | Files | Refs | README | LICENSE Back to index

troff2png (248B)


      1 #!/usr/local/plan9/bin/rc
      2 
      3 9 troff -ms $* | tr2post |
      4   gs -g1000x1000 -r144 -dNOPAUSE -dQUIET \
      5   	'-dGraphicsAlphaBits=4' '-dTextAlphaBits=4' \
      6   	 '-sOUTPUTFILE=-' '-sDEVICE=png16m' - quit.ps | 9 png -9t | 
      7   9 crop -c 255 255 255 | 
      8   9 topng
      9