Skip to content

Instantly share code, notes, and snippets.

@moreguppy
Created July 17, 2013 11:59
Show Gist options
  • Save moreguppy/6019902 to your computer and use it in GitHub Desktop.
Save moreguppy/6019902 to your computer and use it in GitHub Desktop.
Get image size
<?php list($width, $height) = getimagesize('PATH_TO_IMAGE'); ?>
<!-- Value of width -->
<?= $width ?>
<!-- Value of height -->
<?= $height ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment