Heim >Backend-Entwicklung >PHP-Tutorial >Wie stelle ich die Bilddicke für die Strichzeichnung mithilfe der Funktion imagesetthickness() in PHP ein?
imagesetthickness() ist eine in PHP integrierte Funktion, mit der die Dicke der Strichzeichnung festgelegt wird.
bool imagesetthickness($image, $thickness)
imagesetthickness() akzeptiert zwei Parameter: $image und $thickness.
$image − Dieser Parameter wird von Bilderstellungsfunktionen wie imagecreatetruecolor() zurückgegeben. Die Größe, die zum Erstellen des Bildes verwendet wird.
$thickness − Dieser Parameter legt die Dicke des Pixels fest.
imagesetthickness()Gibt bei Erfolg „True“ und bei Misserfolg „False“ zurück.
<?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); ?>
<?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); ?>
Das obige ist der detaillierte Inhalt vonWie stelle ich die Bilddicke für die Strichzeichnung mithilfe der Funktion imagesetthickness() in PHP ein?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!