1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-28 22:25:52 +00:00
QB64-PE/tests/compile_tests/paint/tile_border_white_nocolor.bas

24 lines
495 B
QBasic
Raw Normal View History

2022-11-08 05:47:06 +00:00
$Console:Only
ChDir _StartDir$
TILE$ = MKL$(&HAAFFBB55)
' Paint with tiling, white border color.
' background is colored white, circle is black.
'
' Result should no change anything, as the inside
' of the circle matches the border color.
test1& = _NewImage(128, 50, 9)
_Dest test1&
' Make the entire image white
Line (0, 0)-(127, 49), 7, BF
Circle (64, 25), 25, 0
Paint (64, 25), TILE$, 7
AssertImage test1&, "tile_border_white_nocolor.png"
2022-11-08 05:47:06 +00:00
System
'$include:'../utilities/imageassert.bm'