亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

php語言

php畫圖實例

時間:2024-07-16 00:41:25 php語言 我要投稿
  • 相關(guān)推薦

php畫圖實例

  本文實例講述了php畫圖的方法。分享給大家供大家參考。具體實現(xiàn)方法如下:

  復(fù)制代碼 代碼如下:<?php

  // by MoreWindows

  $imgWidth = 600;

  $imgHeight = 400;

  $img = imagecreatetruecolor($imgWidth, $imgHeight);

  imagefill($img, 0, 0, imagecolorallocate($img, 240, 240, 240));//設(shè)置底色

  $snowflake_size = 30;

  $font_file = "c:WINDOWSFontssimhei.ttf";

  //生成大雪花 其實就是調(diào)用imagettftext()輸出*號

  for ($i=1; $i<=400; $i++)

  {

  $font_color = imagecolorallocate($img, mt_rand(100,200), mt_rand(100,200), mt_rand(100,200));

  imagettftext($img, $snowflake_size, mt_rand(0, 180), mt_rand(0, $imgWidth),mt_rand(0, $imgHeight), $font_color, $font_file, "□");

  }

  //水印文字

  $black_color = imagecolorallocate($img, 0, 0, 0);

  imagettftext($img, 12, 0, $imgWidth - 50 , $imgHeight - 20, $black_color, $font_file, "PHP畫圖");

  imagepng($img);

  imagedestroy($img);

  ?>

  本實例運行效果如下圖所示

  php畫圖實例1

  更多請參考:

  http://www.php.net/manual/zh/refs.utilspec.image.php

  希望本文所述對大家的PHP程序設(shè)計有所幫助。</p

【php畫圖實例】相關(guān)文章:

PHP socket的配置及實例10-16

php查詢mysql的實例09-09

php中fsockopen用法實例06-20

php簡單偽靜態(tài)實例09-16

PHP處理密碼的幾種方式實例09-27

PHP生成器簡單實例09-07

PHP符合PSR編程規(guī)范的實例07-31

php生成高清縮略圖實例08-12

php中實現(xiàn)回刪功能實例10-03

如何啟用Apache的PHP-FPM多實例06-04