画像生成・表示(ImageCreate)
<?php Header("Content-Type: image/jpeg"); $img = ImageCreate(300, 300); $bgcolor = ImageColorAllocate($img, 200, 200, 255); $white = ImageColorAllocate($img, 255, 255, 255); $black = ImageColorAllocate($img, 0, 0, 0); $red = ImageColorAllocate($img, 255, 0, 0); $yellow = ImageColorAllocate($img, 255, 255, 0); ImageLine($img, 5, 50, 295, 50, $white); // 直線を引く ImageDashedLine($img, 5, 100, 295, 100, $red); // 破線を引く ImageRectangle($img, 10, 225, 90, 275, $white); // 長方形を描く imageFilledRectangle($img, 110, 125, 250, 275, $red); // 長方形を描く(塗りつぶし) ImagePolygon($img, array(150, 20, 20, 240, 290, 280), 3, $black); // 多角形を描く ImageArc($img, 100, 150, 195, 130, 0, 360, $white); // 楕円形を描く ImageFill($img, 150, 40, $yellow); // 塗りつぶす ImageString($img, 3, 200, 20, "Hello!!", $red); // テキストを埋め込む ImageJPEG($img); ImageDestroy($img); ?>
〔 実行する 〕