Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
why am I seeing the spaces?
#1
Why am I seeing the colored spaces in this program? Shouldn't     _printmode _keepbackground  be prohibiting this?


[Image: image.png]

Code: (Select All)
Screen _NewImage(512, 384, 32)
rootpath$ = Environ$("SYSTEMROOT") 'normally "C:\WINDOWS"
fontfile$ = rootpath$ + "\Fonts\comic.ttf" 'TTF file in Windows
style$ = "" 'font style is not case sensitive

f& = _LoadFont(fontfile$, 16, style$)
_Font f&
Line (1, 1)-(510, 382), _RGB32(50, 50, 50), BF
_PrintMode _KeepBackground
Color _RGB32(255, 255, 255), _RGB32(170, 70, 70)
Do
    Input txt$
    Print _PrintWidth(txt$), txt$
Loop Until txt$ = "END"
Reply


Messages In This Thread
why am I seeing the spaces? - by James D Jarvis - 09-21-2023, 12:33 AM
RE: why am I seeing the spaces? - by SMcNeill - 09-21-2023, 12:40 AM
RE: why am I seeing the spaces? - by bplus - 09-21-2023, 01:20 AM
RE: why am I seeing the spaces? - by SMcNeill - 09-21-2023, 01:27 AM
RE: why am I seeing the spaces? - by bplus - 09-21-2023, 01:29 AM
RE: why am I seeing the spaces? - by SMcNeill - 09-21-2023, 01:48 AM
RE: why am I seeing the spaces? - by SMcNeill - 09-21-2023, 02:43 AM
RE: why am I seeing the spaces? - by TerryRitchie - 09-21-2023, 03:14 AM
RE: why am I seeing the spaces? - by SMcNeill - 09-21-2023, 03:40 AM
RE: why am I seeing the spaces? - by mnrvovrfc - 09-21-2023, 03:10 AM



Users browsing this thread: 2 Guest(s)