I have a Facebook application in which I'm merging Fb user's name with a picture. I'm using the following system:
index.php -> initialising session and taking access token.
image.php -> merging text (user name) with my picture.
in index.php file, I'm using img src= "image.php" to display the merged picture.
Now I have this code:
$imgDestinationPath = 'now.png';
$link = 'http://mydomain/test/image.php';
$content = file_get_contents($link);
file_put_contents($imgDestinationPath, $content);
Can someone please help me how and where to use this code so that I can download that merged image (image.php)?
I have tried putting this code in index.php but some invalid image gets downloaded.
