La función Gmagick::drawimage() es una función incorporada en PHP que se utiliza para representar el objeto GmagickDraw en la imagen actual.
Sintaxis:
Gmagick Gmagick::drawimage ( $GmagickDraw )
Parámetros: Esta función acepta un solo parámetro como $GmagickDraw que almacena las operaciones para renderizar la imagen.
Valor de retorno: esta función devuelve el objeto Gmagick.
Errores/Excepciones: Esta función lanza GmagickException en caso de error.
Los siguientes programas ilustran la función Gmagick::drawimage() en PHP:
Programa 1:
<?php // Create a GmagickDraw object $draw = new GmagickDraw(); // Create GmagickPixel object $strokeColor = new GmagickPixel('Red'); $fillColor = new GmagickPixel('Green'); // Set the color, opacity of image $draw->setStrokeOpacity(1); $draw->setStrokeColor('Red'); $draw->setFillColor('Green'); // Set the width and height of image $draw->setStrokeWidth(7); $draw->setFontSize(72); // Function to draw circle $draw->circle(250, 250, 100, 150); $gmagick = new Gmagick(); $gmagick->newImage(500, 500, 'White'); $gmagick->setImageFormat("png"); // Use of drawimage function $gmagick->drawimage($draw); // Emboss the image. $gmagick->embossimage(15, 6); // Display the output image header("Content-Type: image/png"); echo $gmagick->getImageBlob(); ?>
Producción:
Programa 2:
<?php // Create a GmagickDraw object $draw = new GmagickDraw(); // Set the color $draw->setFillColor('Green'); // Set the width and height of image $draw->setStrokeWidth(7); $draw->setFontSize(72); // Function to draw rectangle $draw->rectangle(150, 150, 400, 400); $gmagick = new Gmagick(); $gmagick->newImage(500, 500, 'White'); $gmagick->setImageFormat("png"); // Use of drawimage function $gmagick->drawImage($draw); // Display the output image header("Content-Type: image/png"); echo $gmagick->getImageBlob(); ?>
Producción:
Referencia: http://php.net/manual/en/gmagick.drawimage.php
Publicación traducida automáticamente
Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA