123456789101112131415161718192021222324252627282930313233 |
- <?php
- header("Content-type: image/png");
- $string = htmlspecialchars($_GET["WaNr"]);
- $posi = htmlspecialchars($_GET["Posi"]);
- //$stringposi = htmlspecialchars($_GET["Position"]);
- $im = imagecreatefrompng("background_klein.png");
- //$im = imagecreate( 1920, 1080 );
- $background = imagecolorallocate( $im, 255, 255, 255 );
- $grey = imagecolorallocate( $im, 30, 30, 30 );
- $font = './OpenSans.ttf';
- imagettftext($im, 40, 0, 20, 50, $grey, $font, "Bitte eine Seriennummer zu diesen Daten scannen:");
- imagettftext($im, 40, 0, 20, 180, $grey, $font, "WA-NR: " . $string);
- imagettftext($im, 40, 0, 20, 250, $grey, $font, "Position: " . $posi);
- //imagettftext($im, 50, 0, 200, 630, $grey, $font, "Stimmt die Position: " . $stringposi);
- imagepng($im);
- imagedestroy($im);
- ?>
|