termux-packages/packages/termux-api/termux-camera-photo

31 lines
756 B
Plaintext
Raw Normal View History

#!/bin/sh
2015-06-13 01:03:31 +02:00
set -e -u
SCRIPTNAME=termux-camera-photo
2015-06-13 01:03:31 +02:00
show_usage () {
echo "Usage: termux-camera-photo [-c camera-id] output-file"
echo "Take a photo and save it to a file in JPEG format."
echo " -c camera-id ID of the camera to use (see termux-camera-info), default: 0"
exit 0
2015-06-13 01:03:31 +02:00
}
2015-07-29 03:55:54 +02:00
PARAMS=""
while getopts :hc: option
do
case "$option" in
h) show_usage;;
c) PARAMS="--es camera $OPTARG";;
?) echo "$SCRIPTNAME: illegal option -$OPTARG"; exit 1;
esac
2015-06-13 01:03:31 +02:00
done
shift $(($OPTIND-1))
2015-06-13 01:03:31 +02:00
if [ $# = 0 ]; then echo "$SCRIPTNAME: missing file argument"; exit 1; fi
if [ $# != 1 ]; then echo "$SCRIPTNAME: too many arguments"; exit 1; fi
2015-07-29 04:17:38 +02:00
2015-06-13 01:03:31 +02:00
touch $1
2015-07-29 03:55:54 +02:00
PARAMS="$PARAMS --es file `realpath $1`"
2015-06-13 01:03:31 +02:00
@TERMUX_API@ CameraPhoto $PARAMS