From a7a5700cb41ffd4d62b1fb9e51b8542b8366f095 Mon Sep 17 00:00:00 2001 From: Jan BELLON Date: Tue, 12 Mar 2024 09:09:42 +0000 Subject: [PATCH] Update file compte.php --- html/compte.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/compte.php b/html/compte.php index dc62dc3e..40b51768 100644 --- a/html/compte.php +++ b/html/compte.php @@ -91,7 +91,7 @@ if (isset($_FILES['banner']) && $_FILES['banner']['error'] == 0) { // Redimensionnement de l'image list($width, $height) = getimagesize($tempPath); - $newWidth = 600; + $newWidth = 400; $newHeight = ($height / $width) * $newWidth; $imageResized = imagecreatetruecolor($newWidth, $newHeight); imagealphablending($imageResized, false);