03-01-2025, 12:28 AM
(This post was last modified: 03-01-2025, 12:28 AM by PhilOfPerth.)
(02-28-2025, 11:19 PM)madscijr Wrote: Thinking about playing with converting photos to ASCII, and read that which characters used to approximate different levels of brightness would depend on the font, which makes sense.Good question! I searched for something like "_Fontname" and found nothing. May be a useful function to add ???
So now I'm curious what font is this using by default?
Code: (Select All)Screen _NewImage(640, 480, 32)
_ScreenMove 0, 0
Cls
Print "What font is this by default under Windows 11, QB64PE 4.0.0?" + Chr$(13)
Dim n%: n% = 0
Dim i%: For i% = 33 To 255
n% = n% + 1: If n% >= 80 Then n% = 0: Print
Print Chr$(i%);
Next i%
Of all the places on Earth, and all the planets in the Universe, I'd rather live here (Perth, Western Australia.) 
Please visit my Website at: http://oldendayskids.blogspot.com/

Please visit my Website at: http://oldendayskids.blogspot.com/

