Hi team,
thanks to ChatGPT i got a code that works.
Would you like to tell me please is this code save to use?
<!-- STORE LOGO -->
<?php
$logoPath = JPATH_ROOT . '/images/logo/logo.jpg';
if (is_file($logoPath)) {
$logoData = base64_encode(file_get_contents($logoPath));
$logoInfo = getimagesize($logoPath);
if ($logoInfo !== false) {
$mime = $logoInfo;
?>
<div style="text-align:left; margin-bottom:20px;">
<img
src="data:<?php echo $mime; ?>;base64,<?php echo $logoData; ?>"
style="width:170px; height:auto;"
>
</div>
<?php
}
}
?>
<!-- EO STORE LOGO -->
Kind regards
Hans Peter Betzler