<?php
// Koordinaten aus Objekt in Variable schreiben
$xpos = $GLOBALS['lv']->f('xpos');
$ypos = $GLOBALS['lv']->f('ypos');
$stammsitz = "Miami";
// Array schreiben
$userpos = array($xpos,$ypos,$stammsitz);
$bg = imagecreatefrompng("setron_karte/karte_deutschland.png");
$punkt = imagecreatefrompng("setron_karte/pixel.png");
$punktb = imagecreatefrompng("setron_karte/pixel.png");
$width = imagesx($bg);
$height = imagesy($bg);
$bild = imagecreatetruecolor($width, $height);
$weiss = imagecolorallocate ( $bild, 255, 255, 255);
imagecolortransparent ( $bild, $weiss );
imagecopymerge($bild, $bg, 0, 0, 0, 0, $width, $height, 100);
foreach ($userpos as $wert){ // hier enthält $wert noch die richtigen Werte
if ($wert[xpos]!=0 && $wert[ypos]!=0){ // ab hier enthält $wert[xpos] und $wert[ypos] den falschen Wert,z.B 21
$x1 = $wert[xpos] - 3;
$y1 = $wert[ypos] - 3;
imagecopymerge($bild, $punkt, $x1, $y1, 0, 0, 8, 8, 100);
}
}
$file_name_dest = "setron_karte/karte_deutschland_trans.png";
@unlink("setron_karte/karte_deutschland_trans.png");
imagepng($bild,$file_name_dest);
?>