Vorrei sapere come creare un'immagine da un testo.
Tipo il codice di sicurezza di phpnuke
Vorrei sapere come creare un'immagine da un testo.
Tipo il codice di sicurezza di phpnuke
Devi usare le librerie GD mettendo al posto del testo dell'immagine del codice php che scriva caratteri casuali.
Se riesco a farlo io o trovo un tutorial,posto...
Vai nella sezione HowTo, che ho creato un tutorial per le basi delle GD!
Vai vai
http://forum.altervista.org/showthre...ewpost&t=50049
attento che nel tutorial hai sbagliato una aribile nel primo codice cioè dentro la funzione imagefill() hai scritto $ima invece di $im.Originalmente inviato da Leo91
P.S ho detto questo solo per far si che il codice funzioni non per stare a puntualizzare su tutto.
ciao ^_^
Uh!!!! GRAZIE INFINITE!!!! Mi son gasato troppoOriginalmente inviato da jostock
Trovato su freephp.
Contenuto file codice.php
<?php
/*
Create buttons on the fly with PHP
---------------------------------------------------------------------------
author: urs.gehrig@gmx.net, http://www.circle.ch
update: 16-5-2000
PHP: php-3.0.11-win32
file(s): button.php
syntax: for testing:
http://localhost/button.php?fg=99000...fff&txt=button one
for inclusion (see also test.htm):
<img src="button.php?fg=990000&bg=ffffff&txt=button one" border="0">
settings: $bg = background color , hexadecimal
$fg = foreground color , hexadecimal
hexadecimal order : RGB (each 2byte)
*/
define("TextFONT", "3");
function ConvertColor($hexVal){
$ColorVal = array(3);
for($i = 0; $i < 3; $i++)
$ColorVal[$i] = HexDec(substr($hexVal, $i * 2, 2));
return $ColorVal;
}
$width = strlen($txt) * ImageFontWidth(TextFONT);
$offset = 2;
$imgFRAME = ImageCreate($width, ImageFontHeight(TextFONT)+$offset);
list($red, $green, $blue) = ConvertColor($bg);
$bgCOLOR = ImageColorAllocate($imgFRAME, $red, $green, $blue);
list($red, $green, $blue) = ConvertColor($fg);
$fgCOLOR = ImageColorAllocate($imgFRAME, $red, $green, $blue);
ImageFill($imgFRAME, 1, 1, $bgCOLOR);
ImageString($imgFRAME, TextFONT, 1, 1, $txt, $fgCOLOR);
header("Content-type: image/gif");
ImageGIF($imgFRAME);
ImageDestroy($imgFRAME);
?>
<img src="codice.php?fg=990000&txt=button one" border="0"><br>