Skip to content

Instantly share code, notes, and snippets.

@kalkulus
Last active December 22, 2015 10:58
Show Gist options
  • Save kalkulus/6462165 to your computer and use it in GitHub Desktop.
Save kalkulus/6462165 to your computer and use it in GitHub Desktop.
PHP: shell onliner - image rotate 180 degrees
php -r '$img = imagecreatefromjpeg($argv[1]); $rotate = imagerotate($img, 180, 0); imagejpeg($rotate, basename($argv[1],".jpg")."_rotated.jpg");' my_image.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment