চিত্রের ঘনত্ব() PHP-তে একটি অন্তর্নির্মিত ফাংশন যা লাইন অঙ্কনের জন্য পুরুত্ব সেট করতে ব্যবহৃত হয়।
সিনট্যাক্স
bool imagesetthickness($image, $thickness)
পরামিতি
চিত্রের ঘনত্ব() দুটি পরামিতি গ্রহণ করে— $চিত্র এবং $বেধ।
-
$ছবি − এই প্যারামিটারটি একটি ইমেজ তৈরির ফাংশন যেমন imagecreatetruecolor() দ্বারা ফেরত দেওয়া হয়। এটি একটি চিত্রের আকার তৈরি করতে ব্যবহৃত হয়৷
-
$বেধ − এই প্যারামিটারটি পিক্সেলে বেধ সেট করে।
রিটার্ন মান
চিত্রের ঘনত্ব() সাফল্যের উপর সত্য এবং ব্যর্থতার উপর মিথ্যা ফেরত দেয়।
উদাহরণ 1
<?php
// Create an image of a given size
$img = imagecreatetruecolor(700, 300);
$gray = imagecolorallocate($img, 0, 0, 255);
$white = imagecolorallocate($img, 0xff, 0xff, 0xff);
// Set the gray background color
imagefilledrectangle($img, 0, 0, 700, 300, $gray);
// Set the line thickness to 10
imagesetthickness($img, 10);
// Draw the rectangle
imagerectangle($img, 30, 30, 200, 150, $white);
// Output image to the browser
header('Content-Type: image/png');
imagepng($img);
imagedestroy($img);
?> আউটপুট

উদাহরণ 2
<?php
// Create an image of given size using imagecreatetruecolor() function
$img = imagecreatetruecolor(700, 300);
$blue = imagecolorallocate($img, 0, 0, 255);
$white = imagecolorallocate($img, 0xff, 0xff, 0xff);
// Set the white background-color
imagefilledrectangle($img, 0, 0, 300, 200, $blue);
// Set the line thickness to 50
imagesetthickness($img, 50);
// Draw the white line
imageline($img, 50, 50, 250, 50, $white);
// Output image to the browser
header('Content-Type: image/png');
imagepng($img);
imagedestroy($img);
?> আউটপুট
