Skip to content

Instantly share code, notes, and snippets.

@clemgrim
Last active August 29, 2015 14:18
Show Gist options
  • Save clemgrim/701369d206218ccd30bc to your computer and use it in GitHub Desktop.
Save clemgrim/701369d206218ccd30bc to your computer and use it in GitHub Desktop.
<?php
list($width, $height) = getimagesize($urlImg);
$ratio = $width / $height;
$rationLarge = 560 / 292;
$rationSmall = 100 / 72;
if (abs($ratio / $rationLarge) < abs($ratio / $rationSmall)) {
return [560, 292];
} else {
return [100, 72];
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment