From 6f6b5df137a23d54f97234f0a8238940313e6f4f Mon Sep 17 00:00:00 2001 From: Jan BELLON Date: Tue, 12 Mar 2024 09:11:41 +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 40b51768..4bbe917d 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 = 400; + $newWidth = 800; $newHeight = ($height / $width) * $newWidth; $imageResized = imagecreatetruecolor($newWidth, $newHeight); imagealphablending($imageResized, false);