当前位置:首页 > PHP教程 > php应用 > 列表

php实现QQ空间获取当前用户的用户名并生成图片

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-13 22:51:25 浏览: 评论:0 

这篇文章主要介绍了php实现QQ空间获取当前用户的用户名并生成图片的方法,涉及php针对QQ空间及接口调用的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了php实现QQ空间获取当前用户的用户名并生成图片的方法,分享给大家供大家参考,具体如下:

最近发现空间里经常会转载一些含有当前用户昵称和qq号的图片,很好奇,研究了一下原理

原理很简单,图片是利用php生成的,好吧,直接上代码

图片源代码:

  1. <?php 
  2. $ment = $_SERVER["HTTP_REFERER"]; 
  3. if($ment == 'http://cnc.qzs.qq.com/qzone/newblog/v5/editor.html'){ 
  4.   header("HTTP/1.0 500 Internal Server Error"); 
  5. exit;} 
  6. preg_match("#[0-9]{5,11}#",$ment,$rr); 
  7. $r=$rr[0]; 
  8. $webtext=file_get_contents('http://www.phpfensi.com/demo/qqinfo-service.php?qq='.$r); 
  9. preg_match('#&quot;nickname&quot;:&quot;(.*?)&quot;#',$webtext,$rr); 
  10. $rrr=$rr[1]; 
  11. ob_clean(); 
  12. header("Content-type:image/png"); 
  13. $im=imagecreatefromjpeg("1.jpg"); 
  14. $black = ImageColorAllocate($im, 56,73,136); 
  15. $rrr = mb_convert_encoding($rrr"utf-8","UTF-8"); 
  16. imagettftext($im,20,0,90,68,$black,"./simsun.ttc",$rrr); 
  17. imagettftext($im,26,0,87,125,$black,"./simsun.ttc",$r); 
  18. imagejpeg($im); 
  19. imagedestroy($im); 
  20. ?> 

请求的接口获取通过qq号获取昵称:

  1. <?php 
  2. header("Content-Type:text/html;charset=utf-8"); 
  3. $qq = $_GET ["qq"]; 
  4. echo htmlspecialchars(file_get_contents('http://r.qzone.qq.com/cgi-bin/user/cgi_personal_card'"?uin=" . $qq)); 
  5. ?> 

希望本文所述对大家的php程序设计有所帮助。

Tags: php生成图片

分享到:

相关文章