=============
Did you read about imagecopy?
Yes! But with little result!!!!
==================
You can 'just' create a new image that is the size of all four images together (600*100 pixels)
OK....
$temp = ImageCreate(600, 100);
==========================
then open all four images one after the other, and use imagecopy to copy the existing image into the new image at the proper coordinates,
so the first image would be copied to 0,0 the second to 150,0, the third to 300,0 and the fourth to 450,0
This is my problem....
Ex. I try with the first image:
$im = "first.jpg";
$temp = ImageCopy ($temp, $im, 0,0,0,0,0,0);
Imagejpeg($temp,'result.jpg',40);
But any result!
Thanks Vincent
Lorenzo