Thread Diagramm mit GD erstellen: Habe Idee, brauche Hilfte bei Umsetzung (6 answers)
Opened by Froschpopo at 2004-08-04 18:24

Froschpopo
 2004-08-04 21:37
#85376 #85376
User since
2003-08-15
2653 Artikel
BenutzerIn
[default_avatar]
ich hab grad ein Verständnisproblem (vermutlich ist die Lösung wieder viel einfacher als die Arbeit die ich mir mache :D ):
Jedenfalls habe ich hier das Script:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/perl

use GD;
use CGI::Carp qw(fatalsToBrowser);

$im = new GD::Image(400,150);

$hintergrund = $im->colorAllocate(255,255,255);
$linienfarbe = $im->colorAllocate(186,221,148);
$textcolor = $im->colorAllocate(0,0,0);

print "Content-Type: Image/JPEG\n\n";

$im->string(gdLargeFont,100,20,"Juni",$textcolor);
$im->string(gdLargeFont,200,20,"Juli",$textcolor);
$im->string(gdLargeFont,300,20,"August",$textcolor);
$im->string(gdLargeFont,10,40,"100%",$textcolor);
$im->string(gdLargeFont,10,80,"50%",$textcolor);
$im->string(gdLargeFont,10,120,"0%",$textcolor);

@array = (1,2,50,40);

$poly = new GD::Polygon;

for (@array) {
$poly->addPt($old, $_);
$old = $_;
}

$im->polygon($poly,$linienfarbe);

print $im->jpeg;

Ich wollte eigentlich nur mal so zum Test (unabängig von Monat und Prozenzsatz) die Linie darstellen, aber irgendwie schliesst er das polygon immer zu einem Dreieck (siehe: http://www.flirtwelt.net/cgi-bin/diagramm.pl )

Was mach ich falsch?

View full thread Diagramm mit GD erstellen: Habe Idee, brauche Hilfte bei Umsetzung