12-07-2022, 11:13 PM
just one more interesting thing!
at the beginning of the source code, you can set which characters you can use. However, there are many characters in the fonts that can only be accessed with a special key combination or ascii command (alt+numeric keyboard)
if we replace this line:
for this:
then we get the characters that we do not use during normal typing. In this way, we increase the number of characters that can be used, and thus the quality of the image. Unfortunately, the image thing is lost from the "letter-number".
(click to big)
at the beginning of the source code, you can set which characters you can use. However, there are many characters in the fonts that can only be accessed with a special key combination or ascii command (alt+numeric keyboard)
if we replace this line:
Code: (Select All)
char_collection$ = "'+0123456789.?!=:>()<%/-,ABCDEFGHIJKLMNOPQRSTVXYZUWabcdefghijklmnopqrstvxyzuw" '<----- charecters used
for this:
Code: (Select All)
For t = 32 To 127: char_collection$ = char_collection$ + Chr$(t) + Chr$(128 + t): Next t
then we get the characters that we do not use during normal typing. In this way, we increase the number of characters that can be used, and thus the quality of the image. Unfortunately, the image thing is lost from the "letter-number".
(click to big)