I'm merging multiple small images into a rectangular mosaic.
When dealing with a small number of source images it turns out fine:
But when dealing with a larger number of sources it turns out a sepia like effect:
Is there any technique I should be used to preserve the colors?
My method for merging the images is essentially running a script that loops through the source images using imagecreatefromjpeg()
to grab it, followed by imagecopy()
to merge the source onto the collective destination image (and runs until all images have been added/placed).