I have one blinking youtube play button gif image and I have one thumbnail animated gif image.I want to put the youtube play button on that thumbnail image.However I tried to use imagecopy() function as below
$gif_image = imagecreatefromgif($dest_image);
$src_image = imagecreatefromgif($blink_image);
imagecopy($gif_image, $src_image, 55, 40, 0, 0, 80, 80);
The Image is getting copied but there is no blinking effect of play button on resulting image.
How this can be achieved?
Thanks, Ronak Shah