PHP-Quelltext |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<?php
$width = $_GET['width'];
Header( "Content-type: image/png");
if($width > 100)
$width = 100;
$im = imagecreate(301,7);
$white = ImageColorAllocate($im,255,255,255);
$green = ImageColorAllocate($im, 12,246,0);
$grey = ImageColorAllocate($im, 192,192,192);
ImageRectangle($im,0,0,300,6,$grey);
ImageFilledRectangle($im,1,1,$width-1,5,$green);
ImageGif($im);
ImageDestroy($im);
?>
|
PHP-Quelltext |
|
1 2 3 4 5 6 7 8 |
<?php
$width = $_GET['width'];
if($width > 100) {
$width = 100;
}
echo '<img src="pfad zu deiner GFX" width="'. $width .'">';
?>
|
PHP-Quelltext |
|
1 2 3 4 5 6 |
<?php
// in unserem Beispiel steht der Status bei 45% - grafik also 45px breit
echo '<img src="pfad zur grafik" width="'. $todoData['progress'] .'" alt="">';
?>
|
PHP-Quelltext |
|
1 2 3 4 5 6 7 8 9 |
<?php
// in unserem Beispiel steht der Status bei 45% - grafik also 45px breit und der rest bis 100 wird mit zweiter grafik dahinter gesetzt
$full = 100;
$rest = $full - $todoData['progress'];
echo '<table><tr><td width="100"><img src="pfad zur grafik" width="'. $todoData['progress'] .'" alt=""><img src="pfad zur grafik" width="'. $rest .'" alt=""></td></tr></table>';
?>
|
Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »djknuffel« (7. Juli 2010, 16:19)
ja genau sowas wie geht der code denn dafür?schau mal hier, nachdem ich den Beitrag daoben bearbeitet hatte, hab ich das optisch nochmal dargestellt ^ ^
http://www.akcms.eu/quicky/