10-17-2023, 12:25 AM
(This post was last modified: 10-17-2023, 12:25 AM by James D Jarvis.)
tried using a random character as the image seed and it can produce interesting results like in this image where the little blobs in the top and the bottom shot out of the main shape.
Code: (Select All)
Sub test_genletter
_Dest s1
Cls , _RGB32(0, 0, 0)
_PrintString (xmax \ 2 - 4, ymax \ 2 - 8), Chr$(33 + Rnd * 222)
End Sub