首页 > 开发 > PHP > 正文

php使用Imagick生成图片的方法

2024-05-04 23:38:30
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php使用Imagick生成图片的方法,实例分析了php基于Imagick实现添加水印、文字的图片功能,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了php使用Imagick生成图片的方法。分享给大家供大家参考。具体如下:

这里使用Imagick 生成图片

解决了图片写中文文字乱码问题,添加支持的字体

 

 
  1. public function getPic(){ 
  2. header('Content-Type: text/html; charset=utf-8'); 
  3. $text = '中粮屯河(sh600737)';//中粮屯河(sh600737) 
  4. $watermark = '305988103123zczcxzas'
  5. $len = strlen($text); 
  6. $width = 10.5*(($len-8)/3*2+8); 
  7. $height = 26; 
  8. $imagick = new Imagick(); 
  9. $color_transparent = new ImagickPixel('#ffffff'); //transparent 透明色 
  10. $imagick->newImage($width$height$color_transparent'jpg'); 
  11. //$imagick->borderimage('#000000', 1, 1); 
  12. $style['font_size'] = 12; 
  13. $style['fill_color'] = '#000000'
  14. for($numstrlen($watermark); $num>=0; $num--){ 
  15. $this->add_text($imagick,substr($watermark$num,1), 2+($num*8), 30, 1,$style); 
  16. $this->add_text($imagick,substr($watermark$num,1), 2+($num*8), 5, 1,$style); 
  17. //return; 
  18. $style['font_size'] = 20; 
  19. $style['fill_color'] = '#FF0000'
  20. $style['font'] = './msyh.ttf'///微软雅黑字体 解决中文乱码 
  21. //$text=mb_convert_encoding($text,'UTF-8'); //iconv("GBK","UTF-8//IGNORE",$text); 
  22. $this->add_text($imagick,$text, 2, 20, 0,$style); 
  23. header ( 'Content-type: ' . strtolower ($imagick->getImageFormat ()) ); 
  24. echo $imagick->getImagesBlob (); 
  25. // 添加水印文字 
  26. public function add_text(& $imagick$text$x = 0, $y = 0, $angle = 0, $style = array()) { 
  27. $draw = new ImagickDraw (); 
  28. if (isset ( $style ['font'] )) 
  29. $draw->setFont ( $style ['font'] ); 
  30. if (isset ( $style ['font_size'] )) 
  31. $draw->setFontSize ( $style ['font_size'] ); 
  32. if (isset ( $style ['fill_color'] )) 
  33. $draw->setFillColor ( $style ['fill_color'] ); 
  34. if (isset ( $style ['under_color'] )) 
  35. $draw->setTextUnderColor ( $style ['under_color'] ); 
  36. if (isset ( $style ['font_family'] )) 
  37. $draw->setfontfamily( $style ['font_family'] ); 
  38. if (isset ( $style ['font'] )) 
  39. $draw->setfont($style ['font'] ); 
  40. $draw->settextencoding('UTF-8'); 
  41. if (strtolower ($imagick->getImageFormat ()) == 'gif') { 
  42. foreach ( $imagick as $frame ) { 
  43. $frame->annotateImage ( $draw$x$y$angle$text ); 
  44. else { 
  45. $imagick->annotateImage ( $draw$x$y$angle$text ); 

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表