Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ASCII font display
#2
(03-03-2025, 02:44 PM)Helium5793 Wrote: I have about 750 true type fonts on my computer.  Thus I needed some way to display them before I commit a program to using a particular font.  So I wrote a simple program to display all the ascii characters and the upper and lower case alphabet.   For this program it starts asking the name of the .ttf font.  One would just type in 'arial' and it will fill in the .ttf.  It then goes to a 1200x800 screen and displays the characters.  At the end it asks for another font to display. 
John


Not bad what you did there. I like it.
I just changed it so that I don't always have to enter the name of the font.


Code: (Select All)

handle& = _NewImage(1200, 800, 32)
Screen handle&
$Color:32
colorx
Color Black, LightBlue
Cls

top:
ttfont$ = _OpenFileDialog$("Font Öffnen", "", "*.ttf", "Fontdatei", 0)
If ttfont$ = "" Then End

'Input "font name: "; ttfont$
_Title "Font Display: " + ttfont$
'ttfont$ = "courbd"
Cls
height& = 20
fnt& = _LoadFont(ttfont$, height&, style$)
_Font fnt&

TextSize wide&, high& 'get the font or current screen mode's text block pixel size
For i = 1 To 255
    If i > 8 And i < 14 Then Print i; "NA",: GoTo x 'these cause screen problems (linefeed, carriage return)
    Print i; Chr$(i);
    Print " ",
    x:
    If i / 10 = Int(i / 10) Then Print

Next
Print "  "
Print " "
Print "abcdefghijklmnopqrstuvwxyz"
Print UCase$("abcdefghijklmnopqrstuvwxyz")
Print
Sleep
_Font 8
_FreeFont fnt&
GoTo top
End

Sub TextSize (TextWidth&, TextHeight&)
    TextWidth& = _PrintWidth("W") 'measure width of one font or text character
    TextHeight& = _FontHeight 'can measure normal text block heights also
End Sub
Sub colorx
    Cls
    Color Black, DarkCyan
End Sub
Reply


Messages In This Thread
ASCII font display - by Helium5793 - 03-03-2025, 02:44 PM
RE: ASCII font display - by Steffan-68 - 03-03-2025, 04:53 PM
RE: ASCII font display - by bplus - 03-03-2025, 05:49 PM
RE: ASCII font display - by Steffan-68 - 03-03-2025, 08:56 PM
RE: ASCII font display - by SMcNeill - 03-03-2025, 09:08 PM
RE: ASCII font display - by Steffan-68 - 03-04-2025, 03:50 PM



Users browsing this thread: 1 Guest(s)