%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
# optipng(1) completion -*- shell-script -*-
_optipng()
{
local cur prev words cword
_init_completion || return
case $prev in
-'?'|-h|--help|-f)
return
;;
-o)
COMPREPLY=( $( compgen -W '{0..7}' -- "$cur" ) )
return
;;
-out|-log)
_filedir
return
;;
-dir)
_filedir -d
return
;;
-i)
COMPREPLY=( $( compgen -W '0 1' -- "$cur" ) )
return
;;
-zc|-zm)
COMPREPLY=( $( compgen -W '{1..9}' -- "$cur" ) )
return
;;
-zw)
COMPREPLY=( $( compgen -W '256 512 1k 2k 4k 8k 16k 32k' \
-- "$cur" ) )
return
;;
-strip)
COMPREPLY=( $( compgen -W 'all' -- "$cur" ) )
return
;;
esac
if [[ $cur == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
return
fi
_filedir '@(png|bmp|gif|pnm|tif?(f))'
} &&
complete -F _optipng optipng
# ex: filetype=sh