-
-
//header('Content-Type: text/html;charset=utf-8'); - //画像処理
- //1 MIMEタイプの出力タイプを設定しますtext/html はデフォルトで Web ページのタイプになるため、記述する必要はありません
-
- header('Content-Type:image/png;');
-
- $width = 400;
- $height = 400;
- //2 Create画像領域の幅と高さ
- $img = imagecreatetruecolor($width,$height);
-
- //画像に赤と緑のカラーハンドルを割り当てます
- $blue = imagecolorallocate($img,0,102,255);
-
- //Fillカラーリソースハンドル x 軸 y 軸 color
- imagefill($img,0,0,$blue);
-
- //色の作成を続けます
- $while = imagecolorallocate($img,255,255,255);
-
- //ラインハンドル x 開始 y 開始 x 終了 y 終了 color
- imageline($img,60,90,90,60,$while);
-
- //画像情報を印刷
- getimagesize($img);
- < ;p>//描画テキストハンドルフォントサイズx軸Y軸コンテンツカラー
- imagestring($img,5,0,0,'wwwwww',$while);
-
- //画像リストをロードこの関数はGood
- imagecreatefrompng('22.png');
-
- / /元の画像が新しいサンプルから新しい画像にコピーされます
- //新しい画像ハンドル 元の画像ハンドル 新しい画像 xy 元の画像 xy 新しい画像の長さ プラトー 元の画像の長さheight
- imagecopyresampled($img,$yuan,40,40,0,0,$ _width,$_height,$width,$height);
-
- //出力画像
- imagepng($img);
- //ハンドルを破棄
- imagedestroy($img);
- ?>
-
コードをコピー
|