home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / pcfonts / withfonthlp.txt < prev    next >
Text File  |  2020-01-01  |  2KB  |  41 lines

  1. WITHFONT: Run program on EGA/VGA with a given font. Ver 1.5. Apr 16 1993
  2. Copyright (c) 1991-93 by Yossi Gil, P.O.Box 3148, Jerusalem, ISRAEL. 
  3. Email: yogi@cs.technion.ac.il
  4.  
  5.   Usage: WITHFONT fontfile command [arg(s)]
  6.          WITHFONT fontfile [ [-bN fontfileN] ... ]  [ -c ] command [arg(s)]
  7.  
  8. Will run 'command' on 'args' using a text-mode font loaded from 'fontfile'.
  9. WITHFONT looks for 'fontname' in the current directory and then in all the
  10. directories listed in the FONTPATH environment variable. Multiple directories
  11. in FONTPATH are separated by ';' chars. The 'fontfile' name should be of the
  12. form *.fYY, where YY is the font height in pixels (a 2 digit number in the
  13. range 04-32). If the font height cannot be determined from the file name,
  14. then it is set to the file size divided by 256. All fonts loaded must be of
  15. the same height. The font load will not be effected by 'command' changing
  16. the video mode. WITHFONT cures some of MS-DOS 3.3+ CodePage braindamage.
  17.  
  18. EXAMPLES  withfont old-engl.f14 charset              (Load and examine font)
  19.           withfont cp862.f16 hebedit hebfile         (Edit using Heb. chars)
  20.           withfont cp437.f16 -b1 tex-math.f16 view      (Load banks 0 and 1)
  21.  
  22. FLAGS    -h   Display this help screen       -c   Next argument is command
  23.          -H   Display another help screen    -bN  Load next file to bank N
  24.          -?   Display all help information
  25.  
  26. EXIT CODES       255   Error occured while WITHFONT executed
  27.                  254   WITHFONT couldn't parse its command line parameters
  28.                  0     WITHFONT and 'command' terminated successfully
  29.                  Other 'command' exit code
  30.  
  31. BUGS             o     Executed command should not go TSR.
  32.                  o     Internal commands ('DIR' and such) will not be located
  33.                  o     Does not work on adapters other than EGA/VGA
  34.  
  35. SEE ALSO
  36.              _, loadfont, dumpfont, charset, breakcpi
  37.  
  38. COPYING POLICY Copy freely for private use. Usage as part of any commercial
  39.   package is under the same restrictions as of Rhaul Dehsi ZOO program. If
  40.   you cannot obtain ZOO, you cannot use 'withfont' commercially.
  41.