Hey guys!
So why is it when I use
paste image, the image I paste loses quality? It looks as if I compressed it down to a jpg. How can I fix this?
This is the code:
rem setup screen
sync on
sync rate 60
backdrop on
color backdrop 0
show mouse
rem make a simple image with a line on it
create bitmap 1,1024,768
ink 0xFFFFFFFF
line 100,100,500,500
get image 1,0,0,1024,768
delete bitmap 1
rem main loop
do
rem paste image to screen. Notice how the line loses quality compared to a line drawn directly
paste image 1,0,0
rem draw a line directly to screen
line 100,120,500,520
rem refresh screen
sync
rem end of main loop
loop
Thanks,
TheComet