i-love

Gesponsorde koppelingen

PHP script bestanden

  1. i-love

« Lees de omschrijving en reacties

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
    if (isset($_GET['text'])) {
        header("Content-type: image/png");
        
        function
ilove ($text='Myself') {
            $width = imagettfbbox(6, 0, '04b08.ttf', 'I  ' . stripslashes(trim($text)));
            $img = imagecreate($width[2] + 10, 6); // +10 voor eventuele veiligheid
            
            $white = imagecolorallocate($img, 255, 255, 255);
            $red = imagecolorallocate($img, 213, 46, 39);
            $red2 = imagecolorallocate($img, 250, 136, 131);
            $black = imagecolorallocate($img, 0, 0, 0);
            
            imagesetpixel($img, 5, 2, $red2);
            imagesetpixel($img, 6, 1, $red);
            imagesetpixel($img, 6, 2, $red);
            imagesetpixel($img, 6, 3, $red);
            imagesetpixel($img, 7, 1, $red);
            imagesetpixel($img, 7, 2, $red);
            imagesetpixel($img, 7, 3, $red);
            imagesetpixel($img, 7, 4, $red);
            imagesetpixel($img, 8, 2, $red);
            imagesetpixel($img, 8, 3, $red);
            imagesetpixel($img, 8, 4, $red);
            imagesetpixel($img, 8, 5, $red);
            imagesetpixel($img, 11, 2, $red2);
            imagesetpixel($img, 10, 1, $red);
            imagesetpixel($img, 10, 2, $red);
            imagesetpixel($img, 10, 3, $red);
            imagesetpixel($img, 9, 1, $red);
            imagesetpixel($img, 9, 2, $red);
            imagesetpixel($img, 9, 3, $red);
            imagesetpixel($img, 9, 4, $red);
            
            imagettftext($img, 6, 0, 1, 6, $black, '04b08.ttf', 'I  ' . stripslashes(trim($text)));
    
            imagepng($img);
            imagedestroy($img);
        }

        
        ilove($_GET['text']);
    }
else {
?>

<input name="text" type="text" value="Myself" onkeyup="document.getElementById('ilove').src = 'ilove_' + escape(this.value) + '.png';" />
<div id="test"></div>
<img src="ilove_myself.png" id="ilove" />
<?php } ?>


.htacces (voor het opslaan als gedoe):
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
RewriteEngine On
RewriteRule ^ilove_(.*).png$ ilove.php?text=$1 [L,QSA]

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.