Skip to content

Instantly share code, notes, and snippets.

@dspaudio
Created January 16, 2018 08:02
Show Gist options
  • Save dspaudio/89174a9afbd18a1a70e9bb43bf2075f8 to your computer and use it in GitHub Desktop.
Save dspaudio/89174a9afbd18a1a70e9bb43bf2075f8 to your computer and use it in GitHub Desktop.
//read EXIF header from uploaded file
$exif = exif_read_data($_FILES['ImageFile']['tmp_name']);
//fix the Orientation if EXIF data exist
if(!empty($exif['Orientation'])) {
switch($exif['Orientation']) {
case 8:
$createdImage = imagerotate($image,90,0);
break;
case 3:
$createdImage = imagerotate($image,180,0);
break;
case 6:
$createdImage = imagerotate($image,-90,0);
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment