Font anti-aliasing - Printable Version +- QB64 Phoenix Edition (https://staging.qb64phoenix.com) +-- Forum: Chatting and Socializing (https://staging.qb64phoenix.com/forumdisplay.php?fid=11) +--- Forum: General Discussion (https://staging.qb64phoenix.com/forumdisplay.php?fid=2) +--- Thread: Font anti-aliasing (/showthread.php?tid=897) |
Font anti-aliasing - TerryRitchie - 09-16-2022 I could have swore QB64 at one point supported font anti-aliasing through either the _PRINTSTRING or _PRINTMODE statements? I can't seem to find any way to anti-alias a loaded font. Am I missing something? RE: Font anti-aliasing - RhoSigma - 09-17-2022 (09-16-2022, 10:36 PM)TerryRitchie Wrote: I could have swore QB64 at one point supported font anti-aliasing through either the _PRINTSTRING or _PRINTMODE statements? I can't seem to find any way to anti-alias a loaded font. Am I missing something? Hi Terry, QB64 never had natively inbuild text antialiasing, however it was possible with the "falcon.h" C/C++ library header by Luke from the old team. I've made a simple wrapper around this which you can find in the old forum here: https://qb64forum.alephc.xyz/index.php?topic=2248.msg114890#msg114890 RE: Font anti-aliasing - TerryRitchie - 09-17-2022 Thank you for the link. That must be what I remember then. |