PHP 그림 스트로크 및 모자이크(예)

WBOY
풀어 주다: 2016-07-25 08:55:14
원래의
1159명이 탐색했습니다.
  1. /**
  2. * GD 이미지 텍스트 외부
  3. *
  4. * @copyright UGiA.CN
  5. * [url=home.php?mod=space&uid=17823]@LINK[/url] www.ugia.cn/ ?p=88
  6. * @edit bbs.it-home.org
  7. */
  8. 함수 imagetextouter(&$im, $size, $x, $y, $ color, $fontfile, $text, $outer)
  9. {
  10. if (!function_exists('ImageColorAllocateHEX'))
  11. {
  12. function ImageColorAllocateHEX($im, $s)
  13. {
  14. if($s{0} == "#") $s = substr($s,1);
  15. $bg_dec = hexdec($s);
  16. return imagecolorallocate($im,
  17. ( $bg_dec & 0xFF0000) >> 16,
  18. ($bg_dec & 0x00FF00) >> 8,
  19. ($bg_dec & 0x0000FF)
  20. );
  21. }
  22. }
  23. $ttf = false;
  24. if (is_file($fontfile))
  25. {
  26. $ttf = true;
  27. $area = imagettfbbox($size, $angle, $fontfile, $text);
  28. $width = $area[2] - $area[0] 2;
  29. $height = $area[1] - $area[5] 2;
  30. }
  31. else
  32. {
  33. $width = strlen($text) * 10;
  34. $height = 16;
  35. }
  36. $im_tmp = imagecreate($width, $height);
  37. $white = imagecolorallocate($ im_tmp, 255, 255, 255);
  38. $black = imagecolorallocate($im_tmp, 0, 0, 0);
  39. $color = ImageColorAllocateHEX($im, $color);
  40. $outer = ImageColorAllocateHEX( $im, $outer);
  41. if ($ttf)
  42. {
  43. imagettftext($im_tmp, $size, 0, 0, $height - 2, $black, $fontfile, $text);
  44. imagettftext($im, $size, 0, $x, $y, $color, $fontfile, $text);
  45. $y = $y - $height 2;
  46. }
  47. else
  48. {
  49. imagestring($im_tmp, $size, 0, 0, $text, $black);
  50. imagestring($im, $size, $x, $y, $text, $color);
  51. }
  52. for ($i = 0; $i {
  53. for ($j = 0; $j {
  54. $c = ImageColorAt($im_tmp, $i, $j);
  55. if ($c !== $white)
  56. {
  57. ImageColorAt ($im_tmp, $i, $j - 1) != $white || imagesetpixel($im, $x $i, $y $j - 1, $outer);
  58. ImageColorAt ($im_tmp, $i, $j 1) != $white || imagesetpixel($im, $x $i, $y $j 1, $outer);
  59. ImageColorAt ($im_tmp, $i - 1, $j) != $white || imagesetpixel($im, $x $i - 1, $y $j, $outer);
  60. ImageColorAt ($im_tmp, $i 1, $j) != $white || imagesetpixel($im, $x $i 1, $y $j, $outer);
  61. // 取消注释,与Fireworks의 发光效果상동
  62. /*
  63. ImageColorAt ($im_tmp, $i - 1, $j - 1) != $white || imagesetpixel($im, $x $i - 1, $y $j - 1, $outer);
  64. ImageColorAt ($im_tmp, $i 1, $j - 1) != $white || imagesetpixel($im, $x $i 1, $y $j - 1, $outer);
  65. ImageColorAt ($im_tmp, $i - 1, $j 1) != $white || imagesetpixel($im, $x $i - 1, $y $j 1, $outer);
  66. ImageColorAt ($im_tmp, $i 1, $j 1) != $white || imagesetpixel($im, $x $i 1, $y $j 1, $outer);
  67. */
  68. }
  69. }
  70. }
  71. imagedestroy($im_tmp);
  72. }
  73. ?>
复代码

2,调用示例:

  1. header("콘텐츠 유형: image/png");
  2. $im = imagecreatefromjpeg("bluesky.jpg ");
  3. $white = imagecolorallocate($im, 255,255,255);
  4. imagetextouter($im, 9, 10, 20, '#000000', "simsun.ttc", '新年快乐', '#ffffff ');
  5. imagetextouter($im, 2, 10, 30, '#FFFF00', "", 'hello, world!' , '#103993');
  6. imagepng($im);
  7. imagedestroy($im);
  8. ?>
复代码

再来说马赛克:void imagemask(리소스 이미지, int x1, int y1, int x2 , int y2, int 깊이) imagemask()는 x1,y1 到 x2,y2(图image左上角为 0, 0)의 矩shape区域加上马赛克입니다. 깊은 깊이의 깊이, 数字越大越模糊。

效果,如下图:

PHP 그림 스트로크 및 모자이크(예)

1,马赛克函数代码:

  1. /**
  2. * GD 이미지 마스크
  3. *
  4. * @edit bbs.it-home.org
  5. */
  6. 함수 imagemask(&$im, $x1, $y1, $ x2, $y2, $deep)
  7. {
  8. for($x = $x1; $x {
  9. for($y = $y1 ; $y {
  10. $color = ImageColorAt ($im, $x round($deep / 2), $y round($deep / 2));
  11. imagefilled직사각형($im, $x, $y, $x $deep, $y $deep, $color);
  12. }
  13. }
  14. }
  15. ?>
제제대码

2, 호출 예:

  1. header("콘텐츠 유형: image/png");
  2. $im = imagecreatefromjpeg("test.jpg ");
  3. imagemask($im, 57, 22, 103, 40, 8);
  4. imagepng($im);
  5. imagedestroy($im);
  6. ?>
코드 복사


원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿