imagestring() 是 PHP 中的內建函數,用於水平繪製字串。
bool imagestring($image, $font, $x, $y, $string, $color)
#imagestring() accepts six different parameters − $image, $font, $x, $y, $string, and $color.
$image − The $image parameter uses imagecreatetruecolor() function to create a blank 在給定的大小中的圖像。
$font − $font參數用於設定字體大小值為1、2、3、4和5
對於內建字體。
$x - 保持字體在水平X軸上的位置,左上角。
$y - 保持字體在垂直Y軸上的位置,頂部。
$string - $string參數儲存要寫入的字串。
$color - 此參數儲存影像的顏色。
imagestring()在成功時傳回True,失敗時傳回False。
<?php // Create the size and image by using imagecreate() function. $img = imagecreate(700, 300); // Set the background color of the image $background_color = imagecolorallocate($img, 0, 0, 255); // Set the text color of the image $text_color = imagecolorallocate($img, 255, 255, 255); // Function to create an image that contains the string. imagestring($img, 50, 180, 150, "Tutorialspoint", $text_color); imagestring($img, 30, 160, 120, "Simply Easy Learning", $text_color); header("Content-Type: image/png"); imagepng($img); imagedestroy($img); ?>
<?php // Create the size of the image or blank image $img = imagecreate(700, 300); // Set the background color of the image $background_color = imagecolorallocate($img, 122, 122, 122); // Set the text color of the image $text_color = imagecolorallocate($img, 255, 255, 0); // Function to create an image that contains a string. imagestring($img, 10, 30, 60,"Tutorialspoint:Simply Easy Learning", $text_color); header("Content-Type: image/png"); imagepng($img); imagedestroy($img); ?>
以上是如何使用PHP中的imagestring()函數水平繪製文字字串圖像?的詳細內容。更多資訊請關注PHP中文網其他相關文章!