Do I understand you correctly? You have a number made from dots, like this
**
***
** *
*
*
*
*******
*******
And you want to expand the dots so the number fills the screen?
take a look at this program, use the arrow keys to change the scale of the dots.
Graphics 800,600
SetBuffer BackBuffer()
Const screenx = 800
Const screeny = 600
Dim numdata(8,8)
.number1
Data 0,0,0,0,1,1,0,0
Data 0,0,0,1,1,1,0,0
Data 0,0,1,1,0,1,0,0
Data 0,0,0,0,0,1,0,0
Data 0,0,0,0,0,1,0,0
Data 0,0,0,0,0,1,0,0
Data 0,1,1,1,1,1,1,1
Data 0,1,1,1,1,1,1,1
Restore number1
For y = 0 To 7
For x = 0 To 7
Read numdata(x,y)
Next
Next
xscale = 1
yscale = 1
xpos = 0
ypos = 0
While Not KeyHit(1)
If KeyHit(200) Then xscale = xscale + 1
If KeyHit(208) And xscale > 1 Then xscale = xscale - 1
If KeyHit(203) And yscale > 1 Then yscale = yscale - 1
If KeyHit(205) Then yscale = yscale + 1
Cls
For x = 0 To 7
For y = 0 To 7
If numdata(x,y) = 1
Oval xpos+x*xscale,ypos+y*yscale,xscale,yscale,True
End If
Next
Next
Flip
Wend
if you want the dots to remain the same size, but simply just spread out, you can replace
Oval xpos+x*xscale,ypos+y*yscale,xscale,yscale,True
with
Oval xpos+x*xscale,ypos+y*yscale,1,1,True
or whatever size you want the dots to be.