PHP | Función GmagickDraw getstrokecolor()

La función GmagickDraw::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 GmagickDraw::getstrokecolor( void )

Parámetros: Esta función no acepta ningún parámetro.

Valor de retorno: esta función devuelve un valor de GmagickPixel que contiene el color.

Excepciones: esta función lanza GmagickDrawException en caso de error.

Los siguientes programas ilustran la función GmagickDraw::getstrokecolor() en PHP:

Programa 1:

<?php  
  
// Create a new GmagickDraw object 
$draw = new GmagickDraw(); 
  
// Get the stroke color 
$strokeColor = $draw->getstrokecolor()->getcolor(); 
echo $strokeColor; 
?> 

Producción:

rgb(0, 0, 0)

Programa 2:

<?php  
  
// Create a new GmagickDraw object 
$draw = new GmagickDraw(); 
  
// Set the stroke color
$draw->setstrokecolor('#4a76bd');
    
// Get the stroke color 
$strokeColor = $draw->getstrokecolor()->getcolor(); 
echo $strokeColor; 
?> 

Producción:

rgb(19018, 30326, 48573)

Imagen usada:

Programa 3:

<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
  
// Create a GmagickDraw object
$draw = new GmagickDraw();
  
// Set the color
$draw->setFillColor('#0E0E0E');
  
// Draw rectangle for background
$draw->rectangle(-10, -10, 800, 400);
  
// Set the fill color
$draw->setFillColor('white');
  
// Set the color of stroke
$draw->setStrokeColor('red');
  
// Set the width of stroke
$draw->setstrokewidth(1);
  
// Set the font size
$draw->setFontSize(20);
  
// Get the stroke color
$strokecolor = $draw->getstrokecolor()->getcolor();
  
// Annotate a text
$draw->annotate(50, 100,
    'The stroke color here is ' . $strokecolor);
  
// Use of drawimage functeannotate
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

Producción:

Referencia: https://www.php.net/manual/en/gmagickdraw.getstrokecolor.php

Publicación traducida automáticamente

Artículo escrito por gurrrung y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *