06-18-2024, 05:43 PM
(This post was last modified: 06-18-2024, 05:43 PM by a740g.
Edit Reason: Typo
)
The sketches use black and that simply disappears on a black background.
Code: (Select All)
$RESIZE:SMOOTH
OPTION _EXPLICIT
DIM image AS LONG: image = _LOADIMAGE(_OPENFILEDIALOG$("Load SVG file", , "*.svg|*.SVG|*.Svg"), 32)
IF image < -1 THEN
SCREEN _NEWIMAGE(_WIDTH(image), _HEIGHT(image), 32)
CLS , _RGB32(255)
_PUTIMAGE , image
SLEEP
END IF
SYSTEM