
Last edited by dani55 (2008-07-19 21:14:34)
w coba dulu akh.... 



Last edited by kuntilanak (2008-07-20 09:53:46)
[b]dani55[/b]
bisa bos.
edit script php nya.
liat bagian yg gw bold d bawah ini
[spoiler]
<?php
/*
Customized Font Type || By si-andha
Visit http://si-andha.web44.net
*/
class andhaCostumizedText {
var $font = 'fonts/fontname.ttf';
[b]function andhaCostumizedText($width='300',$height='90',$text) {[/b]
$font_size = 30;
$image = @imagecreate($width, $height) or die('Text is missing');
$background_color = imagecolorallocate($image, 255, 255, 255);
$text_color = imagecolorallocate($image, 0, 0, 0);
$textbox = imagettfbbox($font_size, 0, $this->font, $text);
$x = ($width - $textbox[4])/2;
$y = ($height - $textbox[5])/2;
imagettftext($image, $font_size, 0, $x, $y, $text_color, $this->font , $text);
imagejpeg($image);
}
}
[b]$width = isset($_GET['width']) ? $_GET['width'] : '300';
$height = isset($_GET['height']) ? $_GET['height'] : '90';[/b]
$text = isset($_GET['text']) ? $_GET['text'] : '';
header('Content-Type: image/jpeg');
$andha = new andhaCostumizedText($width,$height,$text);
?>
[/spoiler]
size nya bisa lu sesuaikan ndiri.
dan buat nampilin nya, pake kode kyk contoh d bawah ini.
[quote]http://si-andha.web44.net/customized_text.php?text=Text[/quote]
[b]dj_afran[/b]
kyk nya nama folder buat font lu kurang huruf [b]s[/b] bos.
itu juga kalo gw ga salah.
Last edited by y4sir (2008-07-22 10:27:45)
Last edited by dj_afran (2008-07-24 08:33:05)