-
header ("content-type: image/png"); - $conn = mysql_connect("localhost", "root", "");データベース
- $colname_rs_article = $_get['id'] //パラメータ ID を取得
mysql_select_db("cms", $conn) //SQL を実行
- $query_rs_article = sprintf("select *article_id = %s", $colname_rs_article);
- $rs_article = mysql_query($query_rs_article, $conn) または die(mysql_error());
- $row_rs_article = mysql_fetch_assoc($rs_article);
- $totalrows_rs_article = mysql_num_rows( $rs_article ; //背景を白に設定します
- imagefill($image, 0, 0, $bg);
- $text_color = imagecolorallocate($image, 0, 0, 0) //テキストの色を黒に設定します
- imagestring ($image, 5 , 0, 0, $row_rs_article['title'], $text_color) //記事のタイトルを出力
- imagestring($image, 3, 0, 20, $row_rs_article['author'], $text_color ); //記事を出力します Author
- imagestring($image, 4, 0, 60, $row_rs_article['content'], $text_color) //記事の内容を出力します
- $logo = imagecreatefrompng('logo.png'); //ウォーターマーク画像を取得
- $ logow = images($logo);
- imagecopy($image, $logo, 0, 0, 0, 0, $logow, $logo); /テキスト画像と透かし画像を結合します
- imagejpeg($image) // ブラウザに出力します
- imagedestroy($logo)
- ?>
-
-
-
- ;
-
-
-
|