mailpic.php
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
// Ik poep een PNG uit
header("Content-type: image/png");
// Maak een string en decode het
$base = $_GET['mail'];
$text = base64_decode($base);
// Maak nu een plaatje waarin het adres staat
$im = @imagecreate(190, 20)
or die("Het maken van een plaatje is mislukt / Error by generating picture");
$background_color = imagecolorallocate($im, 255, 255, 255);
$text_color = imagecolorallocate($im, 0, 0, 0);
imagestring($im, 2, 2, 2, $text, $text_color);
imagepng($im);
imagedestroy($im);
?>
// Ik poep een PNG uit
header("Content-type: image/png");
// Maak een string en decode het
$base = $_GET['mail'];
$text = base64_decode($base);
// Maak nu een plaatje waarin het adres staat
$im = @imagecreate(190, 20)
or die("Het maken van een plaatje is mislukt / Error by generating picture");
$background_color = imagecolorallocate($im, 255, 255, 255);
$text_color = imagecolorallocate($im, 0, 0, 0);
imagestring($im, 2, 2, 2, $text, $text_color);
imagepng($im);
imagedestroy($im);
?>