Alright Dave, I'm not a coder by nature - I can see all the logic behind the process, but when it comes to building up the code to make it work, I get a bit muddled.
Does this look anything at all correct? Is there a difference between the parameters for imagecopyresampled() and th e regular imagecopy(), because I think I'll have to use it for the TrueColor aspect.
<?php Header("Content-type: image/jpeg");
$img_src1=imagecreatefromjpeg('./sigmaker/images/sig1.jpg');
$img_src2=imagecreatefromjpeg('./sigmaker/images/sig2.jpg');
$img_src3=imagecreatefromjpeg('./sigmaker/images/sig3.jpg');
$img_src4=imagecreatefromjpeg('./sigmaker/images/sig4.jpg');
$img_src5=imagecreatefromjpeg('./sigmaker/images/sig5.jpg');
$img_src6=imagecreatefromjpeg('./sigmaker/images/sig6.jpg');
$img_dst=imagecreatetruecolor(343,124);
//1st image copied onto new big image - first row
imagecopyresampled($img_dst, $img_src1, 0, 0, 0, 0, 157, 47);
//2nd image
imagecopyresampled($img_dst, $img_src2, 157, 0, 0, 0, 102, 47);
//3rd..
imagecopyresampled($img_dst, $img_src3, 259, 0, 0, 0, 84, 124);
//4th... Start 2nd Row at 47px from top
imagecopyresampled($img_dst, $img_src4, 0, 47, 0, 0, 82, 41);
//5th...
imagecopyresampled($img_dst, $img_src5, 82, 47, 0, 0, 177, 41);
//6th... 3rd Row at 88px from top
imagecopyresampled($img_dst, $img_src6, 0, 88, 0, 0, 259, 36);
imagejpeg($img_dst, $g_dstfile, 100);
imagedestroy($img_dst);
?>
Thanks again for your assistance, I didn't expect it was even a plausible idea!