Is there a square monospace font - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1) +--- Forum: Code and Stuff (https://qb64phoenix.com/forum/forumdisplay.php?fid=3) +---- Forum: Help Me! (https://qb64phoenix.com/forum/forumdisplay.php?fid=10) +---- Thread: Is there a square monospace font (/showthread.php?tid=3182) |
Is there a square monospace font - PhilOfPerth - 10-31-2024 I'm looking for a font that's monospace, and occupies the same horizontal as vertical space. for example: FOX FOX FOX will ocucupy a square space on screen. All the Wide fonts I've found still take extra vertical space. RE: Is there a square monospace font - SMcNeill - 10-31-2024 _FONT 8 RE: Is there a square monospace font - Pete - 10-31-2024 _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 RE: Is there a square monospace font - bplus - 10-31-2024 Let me expand on Steve's amazing reply: Code: (Select All) Screen _NewImage(600, 600, 32) (10-31-2024, 11:48 PM)Pete Wrote: _Font 8. Better known as SCREEN 0's fat ASCII characters. Maybe my reply collided with your reply RE: Is there a square monospace font - PhilOfPerth - 11-01-2024 (10-31-2024, 11:34 PM)SMcNeill Wrote: _FONT 8 Thanks Steve. and Bplus. Steve's suggestion does what I wanted. But can I create larger characters? I tried changing the _Font number, which, obviously, can't work. Bplus, sorrry if i'm sounding dense, but can the essence of your Sub be put at top of the code, to declare the size font I need for the rest of the page? The sub works fine, but I don't want to call the sub every time I Print a piece of text. RE: Is there a square monospace font - bplus - 11-01-2024 @PhilOfPerth unlike with Fonts you can make the text any size you want when you call Text8 Sub Text8 (x, y, textHeight, K As _Unsigned Long, txt$) This substitutes for a _Print String(x, y), txt$ only it does more! You can say whatever size you want with textHeight and you can specify whatever color you want. x, y is top left corner of the text put onto screen at the color and height you specify for txt$ If you want to say make every line a height of 20 then y = 20 * row, and use something less than 20 like 18 or 16 for text height so letters aren't sitting right on top of one another. Like the 3 FOX example. Code: (Select All) Screen _NewImage(600, 600, 32) Update: Actually you can make the above example text height at 20! There is still a tiny little space between each row. I just checked. RE: Is there a square monospace font - bplus - 11-01-2024 Here is cool example you can't do easily with a Font! Code: (Select All) Screen _NewImage(1000, 600, 32) RE: Is there a square monospace font - SMcNeill - 11-01-2024 (11-01-2024, 12:42 AM)PhilOfPerth Wrote:(10-31-2024, 11:34 PM)SMcNeill Wrote: _FONT 8 Try this simple little SquarePrint routine: https://qb64phoenix.com/forum/showthread.php?tid=3183 RE: Is there a square monospace font - PhilOfPerth - 11-01-2024 Thanks Steve. That's a very versatile print formating routine. I like how it lets me place text at pixel-position. I'll have a play with that and see if I can apply it in my prog.. |