PPRINT - Print larger text on screen using _PUTIMAGE - Printable Version +- QB64 Phoenix Edition (https://staging.qb64phoenix.com) +-- Forum: QB64 Rising (https://staging.qb64phoenix.com/forumdisplay.php?fid=1) +--- Forum: Prolific Programmers (https://staging.qb64phoenix.com/forumdisplay.php?fid=26) +---- Forum: Dav (https://staging.qb64phoenix.com/forumdisplay.php?fid=34) +---- Thread: PPRINT - Print larger text on screen using _PUTIMAGE (/showthread.php?tid=265) |
PPRINT - Print larger text on screen using _PUTIMAGE - Dav - 04-29-2022 PPRINT lets you print with QB64's built-in screen font in various sizes, not just the default size. I use this little SUB often in my programs because it's small, easy to use, and no external FONT files are needed to make large text sizes. It works by turning printed text to images that _PUTIMAGE can use. Steve has made a better text to image program that blows mine away, so be sure to check his out HERE. This demo just PPRINT's the DATE$ on the screen in various sizes. - Dav Code: (Select All) '========== |