キャプチャを作成しようとしているときにimagettftext関数を使用できない理由を教えてもらえますか?それはimagestringsとうまく動作しますが、フォントサイズが小さいのでimagettextextを使用する必要があります...これはWampの問題か、それは何ですか?御時間ありがとうございます!この場合、imagettftext関数が動作しないのはなぜですか?
PHPコード(今のところ):
<?php
session_start();
header("Content-Type: image/png");
$text = $_SESSION['secure'];
$font_size = 30;
$image_width = 200;
$image_height = 40;
$image = imagecreate($image_width, $image_height);
imagecolorallocate($image, 255, 255, 255);
$text_color = imagecolorallocate($image, 0, 0, 0);
imagettftext($image, $font_size, 0, 15, 30, $text_color, 'arial.ttf', $text);
imagepng($image);
?>
のindex.php:
<?php
session_start();
$_SESSION['secure'] = rand(1000,9999);
?>
<img src="createanimage.php" />
「使用できません」とはどういう意味ですか?エラーログを投稿できますか? – JM4