Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Is there a square monospace font
#4
Let me expand on Steve's amazing reply:

Code: (Select All)
Screen _NewImage(600, 600, 32)
For i = 1 To 3
    Text8 120, i * 120, 120, &HFFFF8844, "FOX"
Next
Print "OK?"
Sleep

Sub Text8 (x, y, textHeight, K As _Unsigned Long, txt$)
    Dim fg As _Unsigned Long, cur&, I&, multi, xlen
    fg = _DefaultColor
    f = _Font
    'screen snapshot
    cur& = _Dest
    I& = _NewImage(8 * Len(txt$), 8, 32)
    _Dest I&
    _Font 8
    Color K, _RGBA32(0, 0, 0, 0)
    _PrintString (0, 0), txt$
    multi = textHeight / 8
    xlen = Len(txt$) * 8 * multi
    _PutImage (x, y)-Step(xlen, textHeight), I&, cur&
    Color fg
    _FreeImage I&
    _Dest cur&
    _Font f
End Sub

(10-31-2024, 11:48 PM)Pete Wrote: _Font 8. Better known as SCREEN 0's fat ASCII characters.

Hey is it just me, or did something go haywire and caused the forum icon buttons, for post formatting, to go blank?

Pete

Maybe my reply collided with your reply Wink
  724  855  599  923  575  468  400  206  147  564  878  823  652  556 bxor cross forever
Reply


Messages In This Thread
Is there a square monospace font - by PhilOfPerth - 10-31-2024, 11:28 PM
RE: Is there a square monospace font - by Pete - 10-31-2024, 11:48 PM
RE: Is there a square monospace font - by bplus - 10-31-2024, 11:52 PM
RE: Is there a square monospace font - by bplus - 11-01-2024, 01:29 AM
RE: Is there a square monospace font - by bplus - 11-01-2024, 02:17 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Font Size in Threads Dimster 5 362 12-12-2025, 04:49 PM
Last Post: Dimster
  square waves (or pulse waves) 8 Hz duty cycle? Rudy M 12 1,111 11-13-2025, 04:12 PM
Last Post: Rudy M
  Problem with font in Teletext browser. SquirrelMonkey 7 750 08-27-2025, 11:38 AM
Last Post: BDS107
  need help printing a scaled string in a custom font to a 32-bit image madscijr 9 1,151 07-03-2025, 04:48 PM
Last Post: SMcNeill
  using a custom tileset as a fixed-width font for _PrintString ? madscijr 11 2,276 06-05-2025, 05:50 PM
Last Post: madscijr

Forum Jump:


Users browsing this thread: 1 Guest(s)