如何在 php 中制作 facebook 个人资料图片的拼贴画?
我能够检索我朋友的所有个人资料照片。
有一些应用程序会将一些个人资料照片拼接在一起并上传到用户的相册中。
我检索图像或上传图像绝对没有问题。我不知道如何将这些照片粘在一起。
有什么建议吗?
I am able to retrieve all of my friend's profile pics.
There are some apps where the some profile pics are stitched together and uploaded into the user's photo album.
I have absolutely no problems retrieving the images or uploading images. I have no idea how to glue together these pics.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许你可以使用
imagecopy()
甚至更好的imagecopyresized()
并将它们粘贴在一起?这就是你的目的吗?
Maybe you could use
imagecopy()
or even betterimagecopyresized()
and paste them together?Is this what you were aiming at?