I need to draw a family tree by a given PHP array
The php array looks like follows:
$array[0] = first_entry //First entry
$array[1][0] = first_entry's mother //First entry's parents
$array[1][1] = first_entry's father //First entry's parents
$array[2][0] = first_entry's mother's mother //Second entry's parents
$array[2][1] = first_entry's mother's father//Second entry's parents
$array[2][2] = first_entry's father's mother //Second entry's parents
$array[2][3] = first_entry's father's father//Second entry's parents
And so on. Each level having the last's level parents in order - first 2 entries are representing the last's level entry.
What I need is a PHP code or JavaScript that will RENDER the family tree from the first one to the last - - and will create an image / PDF file ready for printing.
EDIT
I've tried this bit of code:
public function drawPedigree($pedigree){
//Initialise the image - - represents the pedigree witch will be good for printing
header("Content-Type: image/png");
$width = 745; //Set the image width
$height = 942; //Set the image height
$box_width = 150; //Set the box of pedigree width
$box_height = 100; //Set the box of pedigree height
$position_x = 20; //Set the position from where to start
//Create the image
$im = imagecreatetruecolor($width,$height);
//Colors for the image
$white = imagecolorallocate($im,255,255,255);
$black = imagecolorallocate($im,0,0,0);
$red = imagecolorallocate($im,255,0,0);
$green = imagecolorallocate($im,0,255,0);
$grey = imagecolorallocate($im,200,200,200);
//build the white background
imagefill($im,0,0,$white);
//Create pigeon image from pigeon's file
$pigeon_image = imagecreatefromjpeg(PIGEON_IMAGES.'113x113/113x113_'.$pedigree[0]['pigeon_image']);
$frame = @imagecreatefromjpeg(PIGEON_IMAGES.'frame_boerder_pedigree.jpg');
imagecopymerge($frame,$pigeon_image,9,9,0,0,113,113,100);
imagecopymerge($im,$frame,20,20,0,0,130,130,100);
$g = 0;//Generations counter - - starts from 0 as 0 is the main generation
foreach($pedigree as $generation){//Foreach generation
$count = count($generation);
$i = 0;//Entries counter - - starts from 0 | Must be reseted each generation
if(is_array($generation[$g])){//If the generation is an array - it means that we have to loop trough all the entries
foreach($generation as $pigeon){//Now we are having the each generation pigeon
$position_y = (($height - (pow(2,$g)*$box_height + (pow(2,$g)-1)*20))/2)+($i*$box_height);
imagestring($im,8,$position_x+5,$position_y+25,$pigeon['pigeon_SN'],$black);
imagestring($im,3,$position_x+5,$position_y+40,$pigeon['name'],$red);
imagestring($im,2,$position_x+5,$position_y+55,$pigeon['color'],$grey);
imagestring($im,2,$position_x+5,$position_y+65,$pigeon['sex'],$grey);
imagerectangle($im,$position_x,$position_y+20,$position_x+$box_width,$position_y+$box_height,$black);
//Draw the images between family members
$i++;
}
}//Else, if it is not an array it means that this is the main generation -- represents the first pigeon of the pedigree
else
{
//Draw the first entry of the pedigree
$position_y = ($height/2)- $box_height+50;
imagestring($im,8,$position_x+5,$position_y+5,$generation['pigeon_SN'],$red);
imagestring($im,3,$position_x+5,$position_y+25,$generation['name'],$red);
imagestring($im,3,$position_x+5,$position_y+40,$generation['color'],$grey);
imagestring($im,3,$position_x+5,$position_y+50,$generation['sex'],$grey);
imagerectangle($im,$position_x,$position_y,$position_x+$box_width,$position_y+$box_height+10,$black);
imageline($im,$position_x+$box_width,$position_y+($box_height/2),$position_x+$box_width+20,$position_y+($box_height/2)+50,$black);
imageline($im,$position_x+$box_width,$position_y+($box_height/2),$position_x+$box_width+20,$position_y+($box_height/2)-50,$black);
}
//Go to the next generation
$g++;
$position_x = $position_x + $box_width +20;
//dump($position_x);
}
imagepng($im);
imagedestroy($im);
exit();
}
Witch will generate this image:
pedigree image sample
Can someone please explain me how to link the rectangles as in a pedigree form / family tree?
I've tried to get some formulas between the distances of the rectangles but I didn't managed to do so.
If there are any other solutions or purposes please just tell me. I'd be glad to hear something new.