ホームページ >バックエンド開発 >PHPチュートリアル >PHP は既知の点に基づいて直線を描画します_PHP チュートリアル
場合によっては、画像のホット領域に線を描画する必要がある場合、PHP の GD ライブラリを使用する必要があります。ホット ゾーンのポイントの数は可変であり、画像のサイズも可変です。次の方法を使用して画像のホット ゾーンを生成できます。
<?php header("Content-type: image/jpeg"); $width = 400; $height = 300; $image = imagecreate(400, 300); $white = imagecolorallocate($image, 0xf5, 0xf5, 0xf5); $red = imagecolorallocate($image, 0xff, 0x00, 0x00); $blue = imagecolorallocate($image, 204, 255, 0); $blue2 = imagecolorallocate($image, 0, 0, 0); $line_string ="65.616350%,6.142129%,50.894733%,6.142129%,49.632880%,12.764112%,17.665940%,12.764112%,16.544293%,6.142129%,2.663912%,6.142129%,2.663912%,29.558995%,65.616350%,29.558995%"; $line_array = explode(",",$line_string); for($i = 0; $i < count($line_array); $i=$i+2) { if($i <= count($line_array) - 4) { imageline($image, $line_array[$i] / 100 * $width, $line_array[$i+1] / 100 * $height, $line_array[$i+2] / 100 * $width, $line_array[$i+3] / 100 * $height, $blue); } else { imageline($image, $line_array[$i] / 100 * $width, $line_array[$i+1] / 100 * $height, $line_array[0] / 100 * $width, $line_array[1] / 100 * $height, $blue); } } imagejpeg($image); //imagejpeg($image,"test.jpg",80); //保存图片.80为图片质量 //推荐用ImagePNG()输出,这样图片质量要好些,文件大小也小些 ?>
構文: int imageline(int im, int x1, int y1, int x2, int y2, intcol);
この関数はグラフ上に実線を描画します。グラフの左上隅を原点 (0,0) として、x1、y1 から x2、y2 に接続します。パラメータcolは実線の色です。
参考例:
<?php function imagelinethick ( $image , $x1 , $y1 , $x2 , $y2 , $color , $thick = 1 ) { /* 下面两行只在线段直角相交时好使 imagesetthickness($image, $thick); return imageline($image, $x1, $y1, $x2, $y2, $color); */ if ( $thick == 1 ) { return imageline ( $image , $x1 , $y1 , $x2 , $y2 , $color ); } $t = $thick / 2 - 0.5 ; if ( $x1 == $x2 || $y1 == $y2 ) { return imagefilledrectangle ( $image , round ( min ( $x1 , $x2 ) - $t ), round ( min ( $y1 , $y2 ) - $t ), round ( max ( $x1 , $x2 ) + $t ), round ( max ( $y1 , $y2 ) + $t ), $color ); } $k = ( $y2 - $y1 ) / ( $x2 - $x1 ); //y = kx + q $a = $t / sqrt ( 1 + pow ( $k , 2 )); $points = array( round ( $x1 - ( 1 + $k )* $a ), round ( $y1 + ( 1 - $k )* $a ), round ( $x1 - ( 1 - $k )* $a ), round ( $y1 - ( 1 + $k )* $a ), round ( $x2 + ( 1 + $k )* $a ), round ( $y2 - ( 1 - $k )* $a ), round ( $x2 + ( 1 - $k )* $a ), round ( $y2 + ( 1 + $k )* $a ), ); imagefilledpolygon ( $image , $points , 4 , $color ); return imagepolygon ( $image , $points , 4 , $color ); } ?>
は画像に色を割り当てます。
imagecolorallocate() は、指定された RGB コンポーネントで構成される色を表す識別子を返します。 image パラメータは、imagecreatetruecolor() 関数の戻り値です。 red 、 green 、 blue は、それぞれ目的の色の赤、緑、青のコンポーネントです。これらのパラメータは、0 ~ 255 の整数、または 16 進数の 0x00 ~ 0xFF です。 image で表されるイメージで使用される各色を作成するには、imagecolorallocate() を呼び出す必要があります。
imagecolorallocate() の最初の呼び出しでは、背景色が塗りつぶされます。
<?php $im = imagecreatetruecolor ( 'example.jpg' ); // 背景设为红色 $background = imagecolorallocate ( $im , 255 , 0 , 0 ); // 设定一些颜色 $white = imagecolorallocate ( $im , 255 , 255 , 255 ); $black = imagecolorallocate ( $im , 0 , 0 , 0 ); // 十六进制方式 $white = imagecolorallocate ( $im , 0xFF , 0xFF , 0xFF ); $black = imagecolorallocate ( $im , 0x00 , 0x00 , 0x00 ); ?>
この関数はグラフィックの色を一致させるために使用され、他の描画関数でも使用できます。パラメータ im はグラフィックのハンドルを表します。赤、緑、青のパラメータは三原色であり、その値の範囲は 0 ~ 255 です。