PHP は角の丸い画像コードを生成します

WBOY
リリース: 2016-07-25 08:43:08
オリジナル
1076 人が閲覧しました
  1. $image_file = $_GET['src'];
  2. $corner_radius = isset($_GET['radius']) ? $_GET['半径'] : 20; // デフォルトの角の半径は 20px に設定されます
  3. $topleft = (isset($_GET['topleft']) and $_GET['topleft'] == "no") ?真偽; // デフォルトでは左上の丸い角が表示されます
  4. $bottomleft = (isset($_GET['bottomleft']) and $_GET['bottomleft'] == "no") ?真偽; // デフォルトでは左下の丸い角が表示されます
  5. $bottomright = (isset($_GET['bottomright']) and $_GET['bottomright'] == "no") ?真偽; // デフォルトでは右下の丸い角が表示されます
  6. $topright = (isset($_GET['topright']) and $_GET['topright'] == "no") ?真偽; // デフォルトでは右上の丸い角が表示されます
  7. $imagetype=strto lower($_GET['imagetype']);
  8. $backcolor=$_GET['backcolor'];
  9. $endsize=$corner_radius;
  10. $startsize=$ endsize*3-1;
  11. $arcsize=$startsize*2+1;
  12. if (($imagetype=='jpeg') または ($imagetype=='jpg')) {
  13. $image = imagecreatefromjpeg($image_file) );
  14. } else {
  15. if (($imagetype=='GIF') or ($imagetype=='gif')) {
  16. $image = imagecreatefromgif($image_file);
  17. } else {
  18. $image = imagecreatefrompng( $image_file);
  19. }
  20. }
  21. $size = getimagesize($image_file);
  22. // 左上隅
  23. $background = imagecreatetruecolor($size[0],$size[1]);
  24. imagecopymerge($背景, $image, 0, 0, 0, 0, $size[0], $size[1], 100);
  25. $startx=$size[0]*2-1;
  26. $starty=$size[1 ]*2-1;
  27. $im_temp = imagecreatetruecolor($startx,$starty);
  28. imagecopyresampled($im_temp, $background, 0, 0, 0, 0, $startx, $starty, $size[0], $size [1]);
  29. $bg = imagecolorallocate($im_temp, hexdec(substr($backcolor,0,2)),hexdec(substr($backcolor,2,2)),hexdec(substr($backcolor,4,2) )));
  30. $fg = imagecolorallocate($im_temp, hexdec(substr($forecolor,0,2)),hexdec(substr($forecolor,2,2)),hexdec(substr($forecolor,4,2) ));
  31. if ($topleft == true) {
  32. imagearc($im_temp, $startsize, $startsize, $arcsize, $arcsize, 180,270,$bg);
  33. imagefilltoborder($im_temp,0,0,$bg ,$bg);
  34. }
  35. // 左下隅
  36. if ($bottomleft == true) {
  37. imagearc($im_temp, $startsize, $starty-$startsize,$arcsize, $arcsize, 90,180,$bg );
  38. imagefilltoborder($im_temp,0,$starty,$bg,$bg);
  39. }
  40. // 右下隅
  41. if ($bottomright == true) {
  42. imagearc($im_temp, $startx-$ startsize, $starty-$startsize,$arcsize, $arcsize, 0,90,$bg);
  43. imagefilltoborder($im_temp,$startx,$starty,$bg,$bg);
  44. }
  45. // 右上コーナー
  46. if ($topright == true) {
  47. imagearc($im_temp, $startx-$startsize, $startsize,$arcsize, $arcsize, 270,360,$bg);
  48. imagefilltoborder($im_temp,$startx,0,$ bg,$bg);
  49. }
  50. $newimage = imagecreatetruecolor($size[0],$size[1]);
  51. imagecopyresampled($image, $im_temp, 0, 0, 0, 0, $size[0 ],$size[1],$startx, $starty);
  52. // 最終画像を出力
  53. header("Content-type: image/png");
  54. imagepng($image);
  55. imagedestroy($image);
  56. imagedestroy($background);
  57. imagedestroy($im_temp);
  58. ?>
复制代

圆角、php


関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!