home *** CD-ROM | disk | FTP | other *** search
- /*
- * test PicoPainter arexx port
- */
-
- options results
-
- address "ArtEffect"
-
- openwindow convolve
- currentwindow convolve
- getinfo stem info.
- say info.scrwidth;
- say info.width;
- say info.winbleft;
- say info.winbright;
- say info.scrbarheight;
-
- movewindow leftedge (info.scrwidth - info.width - info.winbleft - info.winbright) topedge info.scrbarheight
-
- convolve matrix7
-
- do i=0 to 6
- do j=0 to 6
- convolve pos i+j*7 value (j%3)*i-1
- end
- end
-
- convolve strength 50
- convolve threshold 64
-
- convolve saveas "Dummy"
- convolve load "StoneArt"
- convolve load "Dummy"
-