Skip to content

Instantly share code, notes, and snippets.

@nokimaro
Created May 29, 2015 13:29
Show Gist options
  • Save nokimaro/e48d1e515dfe2674f568 to your computer and use it in GitHub Desktop.
Save nokimaro/e48d1e515dfe2674f568 to your computer and use it in GitHub Desktop.
<?php
//via http://php.net/manual/en/function.getimagesize.php#109063
$header = unpack('@6/vwidth/vheight', $binaryData);
$width = $header['width']
$height = $header['height'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment