home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2005 July
/
CHIP_CD_2005-07.iso
/
bonus
/
srew
/
files
/
AviSynth_208.exe
/
examples
/
Processing.avs
< prev
next >
Wrap
Text File
|
2002-09-27
|
311b
|
18 lines
# Generates colorbar image at the size 512x384
Colorbars(512,384)
# Resizes the image using the lanczos3 algorithm
LanczosResize(640,480)
# Now the image is 640x480
# Now crop 16 pixels off the entire image all the way around.
Crop(16, 16, -16, -16)
# Convert to greyscale
Greyscale()