Update file compte.php

This commit is contained in:
Jan BELLON 2024-03-12 09:16:51 +00:00
parent 6f6b5df137
commit a5f02d7c3e

View File

@ -56,6 +56,9 @@ if (isset($_FILES['profile_picture']) && $_FILES['profile_picture']['error'] ==
// Redimensionnement de l'image
list($width, $height) = getimagesize($tempPath);
$imageInfo = getimagesize($tempPath);
if ($imageInfo[2] === IMAGETYPE_PNG || $imageInfo[2] === IMAGETYPE_JPEG) {
$newWidth = 128;
$newHeight = 128;
$imageResized = imagecreatetruecolor($newWidth, $newHeight);
@ -80,6 +83,9 @@ if (isset($_FILES['profile_picture']) && $_FILES['profile_picture']['error'] ==
} else {
$status = "Erreur SQL";
}
} else {
$status = "Le fichier doit être au format PNG ou JPG";
}
}
if (isset($_FILES['banner']) && $_FILES['banner']['error'] == 0) {
@ -91,6 +97,9 @@ if (isset($_FILES['banner']) && $_FILES['banner']['error'] == 0) {
// Redimensionnement de l'image
list($width, $height) = getimagesize($tempPath);
$imageInfo = getimagesize($tempPath);
if ($imageInfo[2] === IMAGETYPE_PNG || $imageInfo[2] === IMAGETYPE_JPEG) {
$newWidth = 800;
$newHeight = ($height / $width) * $newWidth;
$imageResized = imagecreatetruecolor($newWidth, $newHeight);
@ -115,6 +124,9 @@ if (isset($_FILES['banner']) && $_FILES['banner']['error'] == 0) {
} else {
$status = "Erreur SQL";
}
} else {
$status = "Le fichier doit être un PNG ou JPG"
}
}
?>