PHP Doku:: Zeichnet einen vertikal ausgerichteten Charakter - function.imagecharup.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzBildverarbeitung und -generierungBildbearbeitung und GDGD- und Image-Funktionenimagecharup

Ein Service von Reinhard Neidl - Webprogrammierung.

GD- und Image-Funktionen

<<imagechar

imagecolorallocate>>

imagecharup

(PHP 4, PHP 5)

imagecharup Zeichnet einen vertikal ausgerichteten Charakter

Beschreibung:

int imagecharup ( resource $im , int $font , int $x , int $y , string $c , int $col )

ImageCharUp() zeichnet das erste Zeichen (Charakter) des Strings c in das Bild, auf das per id gezeigt wird. Die Koordinaten des Zeichens werden durch x / y bestimmt. Dabei wird von den Koordinaten 0 / 0 als Zeichnungsanfang links-oben ausgegangen. Die Farbe des Zeichens wird mit col bestimmt. Ist font als 1, 2, 3, 4 oder 5 definiert, wird ein eingebauter Font genutzt (je größer die Nummer, desto größer der Font).

Beachten Sie auch imageloadfont().


3 BenutzerBeiträge:
- Beiträge aktualisieren...
evolution at turkishboyz dot net
26.02.2006 23:33
<?
$resim
= imagecreatetruecolor(400,400);
$renk1 = imagecolorallocate($resim,222,222,222);
$renk2 = imagecolorallocate($resim,111,111,111);
$renk3 = imagecolorallocate($resim,123,123,123);
$yazi  = "Merhaba Dunyalilar";
$x     =strlen($yazi);
for(
$a=1;$a<=$x;$a++){
   
imagecharup($resim,10,20,20*$a,$yazi,$renk2);
   
$yazi = substr($yazi,1);
    }
imagejpeg($resim);
imagedestroy($resim);
?>
jansafar at volny dot cz
2.12.2005 19:18
I'm using imagestringup() function to write text upwards.
php at corzoogle dot com
17.06.2005 1:28
<?php
// incredibly, no one has added this.
// write a string of text vertically on an image..
// ;o)

$string = '(c) corz.org';
$font_size = 2;
$img = imagecreate(20,90);
$bg = imagecolorallocate($img,225,225,225);
$black = imagecolorallocate($img,0,0,0);

$len = strlen($string);
for (
$i=1; $i<=$len; $i++) {
   
imagecharup($img, $font_size, 5, imagesy($img)-($i*imagefontwidth($font_size)), $string, $black);
   
$string = substr($string,1);
}
header('Content-type: image/png');
imagepng($img);
imagedestroy($img); // dudes! don't forget this!
?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)