
Here's what I'm doing at the moment, but there must be a more efficient way, especially if the image is huge?
Code: Select all
If StartDrawing(ImageOutput(i))
w=ImageWidth(i)-1
h=ImageHeight(i)-1
back=[whatever]
text=[whatever]
For x=0 To w
For y=0 To h
Select Point(x,y)
Case #Magenta : Plot(x,y,back)
Case #Blue : Plot(x,y,text)
EndSelect
Next
Next
StopDrawing()
EndIf