Rumah > Artikel > pembangunan bahagian belakang > Bagaimana untuk melukis imej rentetan teks secara mendatar menggunakan fungsi imagestring() dalam PHP?
imagestring() ialah fungsi terbina dalam PHP yang melukis rentetan secara mendatar.
bool imagestring($image, $font, $x, $y, $string, $color)
imagestring() menerima enam parameter berbeza − $imej, $font, $x, $x, $, $, $, $,
$imej
− Parameter imej$font
−
$$
$
$string
- Parameter rentetan$
Nilai pulangan
<?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); ?>Output Contoh 2
<?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); ?>Output🎜🎜🎜
Atas ialah kandungan terperinci Bagaimana untuk melukis imej rentetan teks secara mendatar menggunakan fungsi imagestring() dalam PHP?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!