Skip to content

Instantly share code, notes, and snippets.

View Joe-abdo's full-sized avatar
πŸ’»
Still alive, probably...

Joe-abdo Joe-abdo

πŸ’»
Still alive, probably...
  • Kekistan
View GitHub Profile
@paulund
paulund / resize-image-keep-aspect-ratio.php
Last active November 5, 2021 10:33
Resize a image to a max width and height and keep aspect ratio.
<?php
public function getImageSizeKeepAspectRatio( $imageUrl, $maxWidth, $maxHeight)
{
$imageDimensions = getimagesize($imageUrl);
$imageWidth = $imageDimensions[0];
$imageHeight = $imageDimensions[1];
$imageSize['width'] = $imageWidth;