home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Professionell 2005 July
/
PCpro_2005_07.ISO
/
files
/
freeware
/
hardcopy
/
hcf.exe
/
basic
/
Basic_Image_002_GrayScale.bas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
2003-11-26
|
266 b
|
17 lines
w = 512 + 60
h = 200
Image(0).Resample( w, h )
Image(0).Color = _ColorWhite
Pen.Width = 2
for i = 0 to 256
Pen.Color = HLStoRGB( i, 255, 255 )
Image(0).Rectangle( 30+i*2, 30, 2, h-60 )
next
Redraw()
Sleep( 3000 )
Image(0).GrayScale()
Redraw()