/usr/bin/pnmmargin is in netpbm 2:10.0-15.2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | #!/bin/sh
#
# ppmmargin - add a margin to a portable anymap
#
# Copyright (C) 1991 by 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.
tmpdir=$(mktemp -d -t ppmmargin.XXXXXXX) || exit 1 #219019
tmp1=$tmpdir/tmp1
tmp2=$tmpdir/tmp2
tmp3=$tmpdir/tmp3
tmp4=$tmpdir/tmp4
color="-gofigure"
# Parse args.
while true ; do
case "$1" in
-w* )
color="-white"
shift
;;
-b* )
color="-black"
shift
;;
-c* )
shift
if [ ! ${1-""} ] ; then
echo "usage: $0 [-white|-black|-color <colorspec>] <size> [pnmfile]" 1>&2
exit 1
fi
color="$1"
shift
;;
-* )
echo "usage: $0 [-white|-black|-color <colorspec>] <size> [pnmfile]" 1>&2
exit 1
;;
* )
break
;;
esac
done
if [ ! ${1-""} ] ; then
echo "usage: $0 [-white|-black|-color <colorspec>] <size> [pnmfile]" 1>&2
exit 1
fi
size="$1"
shift
if [ ${2-""} ] ; then
echo "usage: $0 [-white|-black|-color <colorspec>] <size> [pnmfile]" 1>&2
exit 1
fi
# Capture input file in a tmp file, in case it's a pipe.
cat $@ > $tmp1
# Construct spacer files.
case "$color" in
-gofigure )
pnmcut 0 0 1 1 $tmp1 | pnmtile $size 1 > $tmp2
;;
-white | -black )
pbmmake $color $size 1 > $tmp2
;;
* )
ppmmake $color $size 1 > $tmp2
;;
esac
pnmflip -rotate90 $tmp2 > $tmp3
# Cat things together.
pnmcat -lr $tmp2 $tmp1 $tmp2 > $tmp4
pnmcat -tb $tmp3 $tmp4 $tmp3
# All done.
if [ -d $tmpdir ]; then
rm -rf $tmpdir;
fi
|