Skip to content
Extraits de code Groupes Projets
Valider 5e815e0b rédigé par Thomas Steur's avatar Thomas Steur
Parcourir les fichiers

fixes #5203 keep transparency when uploading logo, also improves quality of generated logo

parent 7385bda0
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -195,21 +195,20 @@ class CustomLogo ...@@ -195,21 +195,20 @@ class CustomLogo
return false; return false;
} }
$smallWidthExpected = round($width * $targetHeight / $height); $targetWidth = round($width * $targetHeight / $height);
$logoSmall = imagecreatetruecolor($smallWidthExpected, $targetHeight); $newImage = imagecreatetruecolor($targetWidth, $targetHeight);
// Handle transparency
$backgroundSmall = imagecolorallocate($logoSmall, 0, 0, 0);
imagecolortransparent($logoSmall, $backgroundSmall);
if ($_FILES[$uploadFieldName]['type'] == 'image/png') { if ($_FILES[$uploadFieldName]['type'] == 'image/png') {
imagealphablending($logoSmall, false); imagealphablending($newImage, false);
imagesavealpha($logoSmall, true); imagesavealpha($newImage, true);
} }
imagecopyresized($logoSmall, $image, 0, 0, 0, 0, $smallWidthExpected, $targetHeight, $width, $height); $backgroundColor = imagecolorallocate($newImage, 0, 0, 0);
imagepng($logoSmall, PIWIK_DOCUMENT_ROOT . '/' . $userPath, 3); imagecolortransparent($newImage, $backgroundColor);
imagecopyresampled($newImage, $image, 0, 0, 0, 0, $targetWidth, $targetHeight, $width, $height);
imagepng($newImage, PIWIK_DOCUMENT_ROOT . '/' . $userPath, 3);
return true; return true;
} }
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
function initDashboard(dashboardId, dashboardLayout) { function initDashboard(dashboardId, dashboardLayout) {
$('.dashboardSettings').show(); $('.dashboardSettings').show();
initTopControls();
// Embed dashboard // Embed dashboard
if (!$('#topBars').length) { if (!$('#topBars').length) {
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter