From ba75ac2dff62d5eaaa88285879922751f02862a4 Mon Sep 17 00:00:00 2001 From: Yass Date: Mon, 2 Mar 2026 09:24:38 +0100 Subject: [PATCH] changement taille image --- controllers/ProjectCtrl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/ProjectCtrl.php b/controllers/ProjectCtrl.php index 294fd74..c39e9f0 100644 --- a/controllers/ProjectCtrl.php +++ b/controllers/ProjectCtrl.php @@ -200,7 +200,7 @@ $strSource = $_FILES['thumbnail']['tmp_name']; list($intWidth, $intHeight) = getimagesize($strSource); - $intDestWidth = 200; $intDestHeight = 250; + $intDestWidth = 1280; $intDestHeight = 720; $fltDestRatio = $intDestWidth / $intDestHeight; $fltSourceRatio = $intWidth / $intHeight;