1. Import

This commit is contained in:
2026-03-29 10:34:57 +02:00
parent b0e00c1259
commit a1129565af
4899 changed files with 3007593 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
/*=======================================================================
*
* jb_detail_sign2.php
*
* Autor: Marc Vollmann
*
=======================================================================*/
include_once ("../include/global.inc.php");
// include_once ("../include/auth.inc.php");
include_once ("../include/image.inc.php");
getSecHttpVars("1",array("tr_sign"));
// Output of the image
if ($tr_sign != "") :
header ("Content-type: image/png");
$im = createSignImage(splitRawCoordinates ($tr_sign));
imagepng ($im);
endif;
?>