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 >
Text File  |  2002-09-27  |  311b  |  18 lines

  1. # Generates colorbar image at the size 512x384
  2.  
  3. Colorbars(512,384)
  4.  
  5. # Resizes the image using the lanczos3 algorithm
  6.  
  7. LanczosResize(640,480)
  8.  
  9. # Now the image is 640x480
  10. # Now crop 16 pixels off the entire image all the way around.
  11.  
  12. Crop(16, 16, -16, -16)
  13.  
  14. # Convert to greyscale
  15.  
  16. Greyscale() 
  17.  
  18.