You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
780 B

#!/bin/sh
10 years ago
set -e -u
SCRIPTNAME=termux-camera-photo
10 years ago
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 ""
echo " -c camera-id ID of the camera to use (see termux-camera-info), default: 0"
echo ""
exit 0
10 years ago
}
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
10 years ago
done
shift $(($OPTIND-1))
10 years ago
if [ $# = 0 ]; then echo "$SCRIPTNAME: missing file argument"; exit 1; fi
if [ $# != 1 ]; then echo "$SCRIPTNAME: too many arguments"; exit 1; fi
10 years ago
touch $1
PARAMS="$PARAMS --es file `realpath $1`"
10 years ago
@TERMUX_API@ CameraPhoto $PARAMS