[php] プレーンコピーを表示 // Set the content-type header("Content-type: image/png"); // 画像を作成します $im = imagecreatetruecolor(400, 100); // いくつかの色を作成します $white = imagecolorallocate($im, 255, 255, 255); $grey = imagecolorallocate($im, 128, 128, 128); $black = imagecolorallocate($im, 0, 0, 0); imagefilledrectangle($im, 0, 0, 399, 100, $white); // 描画する テキスト $text = '字典网'; // パスを独自のフォント パスに置き換えます $font = 'fontName.ttf'; // テキストに影を追加します //imagettftext($im, 60, 0, 11, 21, $grey, $font, $text); // テキストを追加 imagettftext($im, 60, 0, 0, 70, $black, $font, $text); // imagepng() を使用すると、imagejpeg() imagepng($im) と比較して テキストがより鮮明になります。 imagedestroy($im); 如果想保存图可用下代码 [html] プレーンコピーを表示 ob_開始(); imagejpeg($im); $img = ob_get_contents(); ob_end_clean(); $size = strlen($img); $fp2=@fopen('tst.jpg', "a"); fwrite($fp2,$img); fclose($fp2);