Skip to content

Instantly share code, notes, and snippets.

@ozelfatih
Created January 20, 2017 21:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozelfatih/5585237dcd356141565c8657e31528f3 to your computer and use it in GitHub Desktop.
Save ozelfatih/5585237dcd356141565c8657e31528f3 to your computer and use it in GitHub Desktop.
<?php
ImageFill($image, 0, 0, $beyaz);
ImageString($image, 7, 9, 5, $_SESSION["dogrulamaKodu"], $siyah);
imageline($image, 33, 2, 70, 200, $cizgiRengi);
imageline($image, 0, 100, 25, 0, $cizgiRengi);
imageline($image, 70, 25, rand(35, 45), 0, $cizgiRengi);
imageline($image, 0, 8, 70, 23, $cizgiRengi);
header("Content-Type: image/jpegs");
ImageJpeg($image);
ImageDestroy($image);
exit();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment