view tools/create-screenshot-for-doc @ 3578:583d3bf548e6

texinfo: update to 5.2 and install all tools * src/texinfo.mk: update to 5.2 and make/make install all. * src/texinfo-1-fixes.patch: updated patch for 5.2.
author John Donoghue <john.donoghue@ieee.org>
date Tue, 15 Apr 2014 21:32:17 -0400
parents 14b3f5ea78ae
children
line wrap: on
line source

#!/usr/bin/env bash
set -eu

if [ "$#" -ne 2 ]; then
    echo
    echo "Syntax: $0 [IMAGE.png] [NAME]"
    echo
    echo 'IMAGE.png -> screenshot-NAME.png + screenshot-NAME-small.png'
    echo
    exit 1
fi

set -v

IMAGE_FILE="$1"
NAME="$2"

cat "$IMAGE_FILE" \
| pngtopnm \
| pnmtopng -compression 9 \
> "screenshot-$NAME.png"

cat "screenshot-$NAME.png" \
| pngtopnm \
| pnmscale -ysize 128 \
> "screenshot-$NAME-small.pnm"

pnmquant 256 "screenshot-$NAME-small.pnm" \
| pnmtopng -compression 9 \
> "screenshot-$NAME-small.png"

rm -f "screenshot-$NAME-small.pnm"