|
|
@ -7,75 +7,33 @@ Copyright (C) 2011-2023 Thomas Hooge |
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later |
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later |
|
|
|
*****************************************************************************/ |
|
|
|
*****************************************************************************/ |
|
|
|
|
|
|
|
|
|
|
|
include("includes.php"); |
|
|
|
include('config.php'); |
|
|
|
|
|
|
|
|
|
|
|
if(isset($_GET['icon'])) { |
|
|
|
session_name($config_app_session); |
|
|
|
$icon = sanitize($_GET['icon']); |
|
|
|
session_start(); |
|
|
|
|
|
|
|
|
|
|
|
switch($icon) { |
|
|
|
|
|
|
|
case ("add") : |
|
|
|
|
|
|
|
$png = 'page_add'; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case ("back") : |
|
|
|
|
|
|
|
$png = 'control_rewind_blue'; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case ("cancel") : |
|
|
|
|
|
|
|
$png = 'control_rewind_blue'; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case ("comment") : |
|
|
|
|
|
|
|
$png = 'comment'; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case ("delete") : |
|
|
|
|
|
|
|
$png = 'page_delete'; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case ("shred") : |
|
|
|
|
|
|
|
$png = 'bin'; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case ("edit") : |
|
|
|
|
|
|
|
$png = 'page_edit'; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case ("error") : |
|
|
|
|
|
|
|
$png = 'error'; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case ("help") : |
|
|
|
|
|
|
|
$png = 'help'; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case ("logo") : |
|
|
|
|
|
|
|
$png = 'logo'; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case ("next") : |
|
|
|
|
|
|
|
$png = 'control_fastforward_blue'; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case ("save") : |
|
|
|
|
|
|
|
$png = 'page_save'; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case ("search") : |
|
|
|
|
|
|
|
$png = 'magnifier'; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$image = imagecreatefrompng("images/" . $png . ".png"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
imagealphablending($image, true); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
imagesavealpha($image, true); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
header('Content-type: image/png'); |
|
|
|
|
|
|
|
imagepng($image); |
|
|
|
|
|
|
|
imagedestroy($image); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(isset($_GET['color'])) { |
|
|
|
function valid_color($color, $default='888888') { |
|
|
|
$color = sanitize($_GET['color']); |
|
|
|
// safe return a 6 character color string in uppercase |
|
|
|
|
|
|
|
// input can be length of 3 or 6 |
|
|
|
$image = imagecreatetruecolor($_SESSION['suser_imagesize'], $_SESSION['suser_imagesize']); |
|
|
|
if (! isset($color) or ! ctype_xdigit($color)) { |
|
|
|
|
|
|
|
return $default; |
|
|
|
$color = imagecolorallocate($image, hexdec(substr($color,0,2)), hexdec(substr($color,2,2)), hexdec(substr($color,4,2))); |
|
|
|
} |
|
|
|
|
|
|
|
if(strlen($color) == 3) { |
|
|
|
imagefill($image, 0, 0, $color); |
|
|
|
// duplicate characters |
|
|
|
|
|
|
|
$col6 = ''; |
|
|
|
header('Content-type: image/png'); |
|
|
|
for ($i=1; $i<=3; $i++) { |
|
|
|
imagepng($image); |
|
|
|
$col6 .= $color[$i].$color[$i]; |
|
|
|
imagedestroy($image); |
|
|
|
} |
|
|
|
|
|
|
|
return strtoupper($col6); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return strtoupper($color); |
|
|
|
} |
|
|
|
} |
|
|
|
?> |
|
|
|
|
|
|
|
|
|
|
|
$color = valid_color($_GET['color'], '444'); |
|
|
|
|
|
|
|
$image = imagecreatetruecolor($_SESSION['suser_imagesize'], $_SESSION['suser_imagesize']); |
|
|
|
|
|
|
|
$color = imagecolorallocate($image, hexdec(substr($color,0,2)), hexdec(substr($color,2,2)), hexdec(substr($color,4,2))); |
|
|
|
|
|
|
|
imagefill($image, 0, 0, $color); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
header('Content-type: image/png'); |
|
|
|
|
|
|
|
imagepng($image); |
|
|
|
|
|
|
|
imagedestroy($image); |
|
|
|