Re: Odd - Interesting - Forgotten
Posted: Tue Jan 14, 2025 12:28 am
Ok, that didn't quite work. I'd have to think about a better way of doing this. The color test isn't quite in the order I wanted. I just went white to black twice but that gives repeating patters instead of a gradient. Here's the simple BASIC program:
Here are the two source images:
Here's the final combined image (approximate since done on Q-emuLator and then video captured):
Here is the MDV to run it yourself on actual hardware.
Code: Select all
5 REMark Dithvide lores color palette
10 k = 0: BORDER #1,4,255
15 FOR i=7 TO 0 STEP -1
20 FOR j=0 TO i
25 BLOCK #1,12,192,k,0,i
30 k = k + 12
35 NEXT j
40 NEXT i
45 SBYTES mdv1_loColorTest1_scr,131072,32768
50 k = 0: CLS #1
55 FOR i=7 TO 0 STEP -1
60 FOR j=i TO 0 STEP -1
65 BLOCK #1,12,192,k,0,j
70 k = k + 12
75 NEXT j
80 NEXT i
85 SBYTES mdv1_loColorTest2_scr,131072,32768
90 BORDER #1,0,0
Here's the final combined image (approximate since done on Q-emuLator and then video captured):
Here is the MDV to run it yourself on actual hardware.