403Webshell
Server IP : 173.236.223.38  /  Your IP : 216.73.216.33
Web Server : Apache
System : Linux vps62975 6.8.0-83-generic #83~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Sep 9 18:19:47 UTC 2 x86_64
User : invmicvps ( 6727287)
PHP Version : 8.3.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /bin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /bin/exifautotran
#!/bin/sh
# exifautotran [list of files]
#
# Transforms Exif files so that Orientation becomes 1
#

trap "if test -n \"\$tempfile\"; then rm -f \"\$tempfile\"; fi" INT QUIT TERM

for i
do
 case $i in
 -v|--version) echo "exifautotran"; exit 0;;
 -h|--help) 
             cat <<EOF
exifautotran [list of files]

Transforms Exif files so that Orientation becomes 1
EOF
             exit 0;;
 esac

 case `jpegexiforient -n "$i"` in
 1) transform="";;
 2) transform="-flip horizontal";;
 3) transform="-rotate 180";;
 4) transform="-flip vertical";;
 5) transform="-transpose";;
 6) transform="-rotate 90";;
 7) transform="-transverse";;
 8) transform="-rotate 270";;
 *) transform="";;
 esac
 if test -n "$transform"; then
  tempfile=`mktemp`;
  if test "$?" -ne "0"; then
    echo "Failed to create temporary file" >&2
    exit 1;
  fi
  echo Executing: jpegtran -copy all $transform $i >&2
  jpegtran -copy all $transform "$i" > $tempfile
  if test $? -ne 0; then
   echo Error while transforming $i - skipped. >&2
   rm "$tempfile"
  else
   cp "$tempfile" "$i"
   rm "$tempfile"
   jpegexiforient -1 "$i" > /dev/null
  fi
 fi
done

Youez - 2016 - github.com/yon3zu
LinuXploit