// Created on savesnippets.com ยท https://savesnippets.com/v26QlwmZidDZra imagecreatefromjpeg($srcPath), 'image/png' => imagecreatefrompng($srcPath), 'image/gif' => imagecreatefromgif($srcPath), 'image/webp' => imagecreatefromwebp($srcPath), default => throw new RuntimeException('Unsupported image type'), }; $dst = imagecreatetruecolor($newW, $newH); imagecopyresampled($dst, $src, 0, 0, 0, 0, $newW, $newH, $w, $h); imagejpeg($dst, $dstPath, $quality); imagedestroy($src); imagedestroy($dst); } resizeImageMax('/uploads/photo.png', '/uploads/photo-1024.jpg', 1024);