Skip to content

Instantly share code, notes, and snippets.

@maxivak
Created May 14, 2014 11:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxivak/57656bfe27b5115aa9a1 to your computer and use it in GitHub Desktop.
Save maxivak/57656bfe27b5115aa9a1 to your computer and use it in GitHub Desktop.
PHP. Check if image is corrupted
$filaname = 'file.jpg';
if (!@imagecreatefromjpeg($filename)){
echo "bad image";
}
else{
echo 'ok';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment