.TH pnmshift 1 "27 November 1999" .IX pnmshift .SH NAME pnmshift - shift lines of a portable anymap left or right by a random amount .SH SYNOPSIS pnmshift .I shift .RI [ pnmfile ] .SH DESCRIPTION Reads a portable anymap as input. Shifts every row of image data to the left or right by a certain amount. The 'shift' parameter determines by how many pixels a row is to be shifted at most. .PP Another one of those effects I intended to use for MPEG tests. Unfortunately, this program will not help me here - it creates too random patterns to be used for animations. Still, it might give interesting results on still images. .SH EXAMPLE Check this out: Save your favourite model's picture from something like alt.binaries.pictures.supermodels (ok, or from any other picture source), convert it to pnm, and process it e.g. like this, assuming the picture is 800x600 pixels: .EX # take the upper half, and leave it like it is pnmcut 0 0 800 300 cs.pnm >upper.pnm # take the lower half, flip it upside down, dim it and distort it a little pnmcut 0 300 800 300 cs.pnm | pnmflip -tb | pnmdim 0.7 | pnmshift 10 >lower.pnm # and concatenate the two pieces pnmcat -tb upper.pnm lower.pnm >newpic.pnm .EE The resulting picture looks like the image being reflected on a water surface with slight ripples. .SH SEE ALSO pnmcut(1), pnmflip(1), pnmdim(1), pnmcat(1), pbmplus(1) .SH AUTHOR Copyright (C) 1993, 1999 by Frank Neumann and Jef Poskanzer .\" Permission to use, copy, modify, and distribute this software and its .\" documentation for any purpose and without fee is hereby granted, provided .\" that the above copyright notice appear in all copies and that both that .\" copyright notice and this permission notice appear in supporting .\" documentation. This software is provided "as is" without express or .\" implied warranty.