home *** CD-ROM | disk | FTP | other *** search
- /* Verzerrung 1
- * von A. Pratsch
- * Copyright (c) 1995
- */
-
- options results
-
- activatewindow current
- source = result
-
- getinfo stem a.
-
- new a.picwidth a.picheight "Destination"
- dest = result
- movewindow l a.leftedge t a.topedge
-
- activatewindow winid source quiet
- scalemode linear
- paintmode mat
-
- lockgui
- do y=0 to a.picheight-1
- activatewindow winid source quiet
- cutbox 0 y a.picwidth 1
- sethandle tle
- activatewindow winid dest quiet
- width = trunc(1+a.picwidth*y/a.picheight)
- resizebrush w width
- point 0 y
- point a.picwidth-1-width a.picheight-1-y
- end
- unlockgui
- freebrush
-
- activatewindow winid dest
-