ホームページ > バックエンド開発 > PHPチュートリアル > PHP の GD ライブラリを使用して描画された 2 つの幾何学図形

PHP の GD ライブラリを使用して描画された 2 つの幾何学図形

WBOY
リリース: 2016-06-23 13:25:36
オリジナル
923 人が閲覧しました

//code6.php 機能化なし

<?php header("Content-type:image/png");$img=imagecreatetruecolor(400, 400);$black=imagecolorallocate($img, 0, 0, 0);$red=imagecolorallocate($img, 255, 0, 0);$green=imagecolorallocate($img, 0, 255, 0);$blue=imagecolorallocate($img, 0, 0, 255);imagefill($img, 0, 0, $black);imageline($img, 0, 0, 400, 400, $green);imageline($img, 40, 0, 400, 400, $green);imageline($img, 80, 0, 400, 400, $green);imageline($img, 120, 0, 400, 400, $green);imageline($img, 160, 0, 400, 400, $green);imageline($img, 200, 0, 400, 400, $green);imageline($img, 240, 0, 400, 400, $green);imageline($img, 280, 0, 400, 400, $green);imageline($img, 320, 0, 400, 400, $green);imageline($img, 360, 0, 400, 400, $green);imageline($img, 390, 0, 400, 400, $green);imageline($img, 0, 40, 400, 400, $green);imageline($img, 0, 80, 400, 400, $green);imageline($img, 0, 120, 400, 400, $green);imageline($img, 0, 160, 400, 400, $green);imageline($img, 0, 200, 400, 400, $green);imageline($img, 0, 240, 400, 400, $green);imageline($img, 0, 280, 400, 400, $green);imageline($img, 0, 320, 400, 400, $green);imageline($img, 0, 360, 400, 400, $green);imageline($img, 0, 390, 400, 400, $green);imageline($img, 0, 400, 400, 0, $green);imageline($img, 0, 400, 400, 40, $green);imageline($img, 0, 400, 400, 80, $green);imageline($img, 0, 400, 400, 120, $green);imageline($img, 0, 400, 400, 160, $green);imageline($img, 0, 400, 400, 200, $green);imageline($img, 0, 400, 400, 240, $green);imageline($img, 0, 400, 400, 280, $green);imageline($img, 0, 400, 400, 320, $green);imageline($img, 0, 400, 400, 360, $green);imageline($img, 0, 400, 400, 390, $green);imageline($img, 0, 400, 360, 0, $green);imageline($img, 0, 400, 320, 0, $green);imageline($img, 0, 400, 280, 0, $green);imageline($img, 0, 400, 240, 0, $green);imageline($img, 0, 400, 200, 0, $green);imageline($img, 0, 400, 160, 0, $green);imageline($img, 0, 400, 120, 0, $green);imageline($img, 0, 400, 80, 0, $green);imageline($img, 0, 400, 40, 0, $green);imageline($img, 0, 400, 10, 0, $green);imagepng($img);?>
ログイン後にコピー

//code7.php 関数処理

<?php header("Content-type:image/png");$img=imagecreatetruecolor(400, 400);$black=imagecolorallocate($img, 0, 0, 0);$red=imagecolorallocate($img, 255, 2550, 0);$green=imagecolorallocate($img, 0, 255, 0);$blue=imagecolorallocate($img, 0, 0, 255);imagefill($img, 0, 0, $black);for($i=0;$i<=400;$i+=10){imageline($img, 0, $i, 200, 200, $red);}for($j=0;$j<=400;$j+=20){imageline($img, $j, 0, 200, 200, $red);}for($x=0;$x<=400;$x+=10){imageline($img, 200, 200, 400, $x, $red);}for($y=0;$y<=400;$y+=20){imageline($img, 200, 200, $y, 400, $red);}imagepng($img);?>
ログイン後にコピー

//code6.png

//code7.png


ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート