コードをコピーします コードは次のとおりです:
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("記事 WHERE 記事 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記事);
$image = ImageCreateTrueColor(700, 1000); //キャンバスを作成します
$bg = ImageColorAllocate($image, 255, 255, 255) //背景を白に設定します
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) //出力記事著者
imagestring($image, 0, 60, $ row_rs_article['content'] , $text_color); //記事コンテンツを出力
$logo = ImageCreateFromPNG('logo.png') //ウォーターマーク画像を取得
$logoW = ImageSX($logo); ImageSY($logo);
ImageCopy ($image, $logo, 0, 0, 0, 0, $logoW, $logoH); // テキスト画像と透かし画像を結合します
ImageJPEG($image);
ImageDestroy($logo);
ImageDestroy($image);
http://www.bkjia.com/PHPjc/745209.html
www.bkjia.com
truehttp://www.bkjia.com/PHPjc/745209.html技術記事次のようにコードをコピーします。 ?php header ("Content-type: image/png"); $conn = MYSQL_connect("localhost", "root", ""); //データベースに接続 $colname_rs_article = $_GET[ 'id' ]; //パラメータを取得します...