ইমেজেস্ট্রিং() পিএইচপি-তে একটি অন্তর্নির্মিত ফাংশন যা অনুভূমিকভাবে একটি স্ট্রিং আঁকতে ব্যবহৃত হয়।
সিনট্যাক্স
bool imagestring($image, $font, $x, $y, $string, $color)
পরামিতি
ইমেজেস্ট্রিং() ছয়টি ভিন্ন প্যারামিটার গ্রহণ করে - $image, $font, $x, $y, $string, এবং $color।
-
$ছবি − $ইমেজ প্যারামিটারটি প্রদত্ত আকারে একটি ফাঁকা ছবি তৈরি করতে imagecreatetruecolor() ফাংশন ব্যবহার করে।
-
$font − $font প্যারামিটারটি অন্তর্নির্মিত ফন্টগুলির জন্য 1, 2, 3, 4, এবং 5 থেকে ফন্টের আকারের মান সেট করতে ব্যবহৃত হয়৷
-
$x − অনুভূমিক X-অক্ষে, উপরের বাম কোণে ফন্টের অবস্থান ধরে রাখে।
-
$y − উল্লম্ব Y-অক্ষে, উপরের কোণে ফন্টের অবস্থান ধরে রাখে।
-
$string − $string প্যারামিটারটি লেখার জন্য স্ট্রিং ধরে রাখে।
-
$color − এই প্যারামিটারটি ছবির রঙ ধরে রাখে।
রিটার্ন মান
ইমেজেস্ট্রিং() সাফল্যের উপর সত্য এবং ব্যর্থতার উপর মিথ্যা ফেরত দেয়।
উদাহরণ 1
<?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); ?>
আউটপুট
উদাহরণ 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); ?>
আউটপুট