Skip to content

Instantly share code, notes, and snippets.

View hikmatkmatz's full-sized avatar
💭
I may be slow to respond.

\\\\\zzzz\z\z hikmatkmatz

💭
I may be slow to respond.
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;