I am not sure if this is the right tag to ask this question.
I have see many facebook apps which generate a customized image as output of the app wherein profile pics of users and their friends are superimposed or say combined to make one single image. After that tagging is done as well.
Can anybody tell me how is it done?
I am trying to make a similar app using php
Thanks in advance
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
|
take the photos as described here: How to use Facebook graph API to retrieve fan photos uploaded to wall of fan page? then merge them like this: http://php.net/manual/en/function.imagecopymerge.php or using some component/framework/library you like, e.g. GD http://php.net/manual/en/ref.image.php. |
|||||||
|
|
I've used Imagick for a while - really easy. Its done by making calls to libraries such as the ones listed here and in @darlinton's answer. The libraries have functions like borderImage, cropImage, resizeImage, compositeImage. |
|||
|
|