La función ImagickDraw::getStrokeColor() es una función incorporada en PHP que se usa para obtener el color que se usa para trazar los contornos de los objetos.
Sintaxis:
ImagickPixel ImagickDraw::getStrokeColor( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve ImagickPixel que contiene el color del trazo.
Los siguientes programas ilustran la función ImagickDraw::getStrokeColor() en PHP:
Programa 1:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Get the stroke color $strokeColor = $draw->getStrokeColor()->getColorAsString(); echo $strokeColor; ?>
Producción:
srgba(255, 255, 255, 0)
Programa 2:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the stroke color $draw->setStrokeColor('grey'); // Get the stroke color $strokeColor = $draw->getStrokeColor()->getColorAsString(); echo $strokeColor; ?>
Producción:
srgb(190, 190, 190)
Programa 3:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, 'black'); // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the fill color $draw->setFillColor('black'); // Set the width of stroke $draw->setStrokeWidth(1); // Set the color of stroke $draw->setStrokeColor('red'); // Set the font size $draw->setFontSize(40); // Get the stroke color $strokecolor = $draw->getStrokeColor()->getColorAsString(); // Annotate a text $draw->annotation(50, 100, 'The stroke color here is ' . $strokecolor); // Set the color of stroke $draw->setStrokeColor('green'); // Get the stroke color $strokecolor = $draw->getStrokeColor()->getColorAsString(); // Annotate a text $draw->annotation(50, 200, 'The stroke color here is ' . $strokecolor); // Render the draw commands $imagick->drawImage($draw); // Show the output $imagick->setImageFormat('png'); header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Referencia: https://www.php.net/manual/en/imagickdraw.getstrokecolor.php