FlagCreation with some random text inside.
<?php
class Logo{
private $colors;
private $imgWidth;
private $imgHeight;
private $img;
private $text;
public function __construct($width = 100, $height = 60){
$this->imgWidth = $width;
$this->imgHeight = $height;
$this->text = "RND TEXT";
$this->createImage();
}
public function getText(){
return $this->text;
}
public function createImage(){
$this->img = imagecreatetruecolor($this->imgWidth,$this->imgHeight);
$farbe = array(200,200,200);
$this->colors[0] = $this->makeColor($farbe);
$farbe = array(100,100,200);
$this->colors[1] = $this->makeColor($farbe);
imagefill($this->img,0,0,$this->colors[0]);
$streifenhoehe = intval($this->imgHeight / 6);
$textgroesse = intval($streifenhoehe *2);
$y = 0;
$x = 0;
imagefilledrectangle($this->img,0,0,$this->imgWidth,$streifenhoehe,$this->colors[1]);
$y = $this->imgHeight - $streifenhoehe;
imagefilledrectangle($this->img,0,$y,$this->imgWidth,$this->imgHeight,$this->colors[1]);
$textma = imagettfbbox ( $textgroesse ,0 , "ARIAL.TTF", $this->text);
$textanfang = ($this->imgWidth - ($textma[2] - $textma[0]))/2;
$textanfang_hoehe = intval(($this->imgHeight-($textma[7]-$textma[1]))/2);
imagettftext($this->img, $textgroesse,0,$textanfang, $textanfang_hoehe, $this->colors[1],"ARIAL.TTF", $this->text);
}
public function makeColor($color){
if (count($color)%3 != 0)
return false;
else
return imagecolorallocate($this->img,$color[0],$color[1],$color[2]);
}
public function getImage(){
header('Content-Type: image/gif', true);
imagejpeg($this->img);
}
}
$logo = new Logo(300,180);
$logo->getImage();
?>
imagexbm
(PHP 5)
imagexbm — Bir XBM resmini tarayıcıya veya dosyaya çıktılar
Açıklama
$resim
, string $dosyaismi
[, int $artalan
] )Belirtilen resmin XBM sürümünü çıktılar veya kaydeder.
Değiştirgeler
-
resim -
imagecreatetruecolor() gibi bir resim oluşturma işlevinden dönen bir resim verisi.
-
dosyaismi -
Resmin kaydedileceği dosyanın yolu. Belirtilmez veya
NULLverilirse doğrudan ham resim akımı çıktılanır. -
artalan -
imagecolorallocate() tarafından sağlanmış bir tanıtıcı ile bir artalan rengi tanımlayabilirsiniz. Öntanımlı artalan rengi siyahtır.
Dönen Değerler
Başarı durumunda TRUE, başarısızlık durumunda FALSE döner.
Örnekler
Örnek 1 - Bir XBM dosyasının kaydedilmesi
<?php
// Boş bir resim oluşturup üzerine bir metin ekleyelim
$resim = imagecreatetruecolor(120, 20);
$metin_rengi = imagecolorallocate($resim, 233, 14, 91);
imagestring($resim, 1, 5, 5, 'Bir deneme dizgesi', $metin_rengi);
// Resmi kaydedelim
imagexbm($resim, 'dnm.xbm');
// Belleği serbest bırakalım.
imagedestroy($resim);
?>
Örnek 2 - XBM dosyasını farklı bir artalan rengi ile çıktılamak
<?php
// Boş bir resim oluşturup üzerine bir metin ekleyelim
$resim = imagecreatetruecolor(120, 20);
$metin_rengi = imagecolorallocate($resim, 233, 14, 91);
imagestring($resim, 1, 5, 5, 'Bir deneme dizgesi', $metin_rengi);
// Yeni artalan rengini ayarlayalım
$artalan_rengi = imagecolorallocate($resim, 255, 0, 0);
// Resmi çıktılayalım
imagexbm($resim, NULL, $artalan_rengi);
// Belleği serbest bırakalım
imagedestroy($resim);
?>
Notlar
Bilginize: Bu işlev sadece, PHP, PHP paketinde bulunan GD kütüphanesi ile derlenmişse kullanılabilir.
