La función Imagick::rollImage() es una función incorporada en PHP que se usa para rodar una imagen.
Sintaxis:
bool Imagick::rollImage( $x, $y )
Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- $x: este parámetro almacena el valor del desplazamiento X.
- $y: este parámetro almacena el valor del desplazamiento Y.
Valor de retorno: esta función devuelve True en caso de éxito.
Imagen original:
El siguiente programa ilustra la función Imagick::rollImage() en PHP:
Programa 1:
<?php // Create an Imagick object $imagick = new \Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-19.png'); // Use rollImage function $imagick->rollImage(60, 50); header("Content-Type: image/jpg"); // Display the image echo $imagick->getImageBlob(); ?>
Producción:
Programa 2:
<?php $string = "Computer Science portal for Geeks!"; // Creating new image of above String // and add color and background $im = new Imagick(); $draw = new ImagickDraw(); // Fill the color in image $draw->setFillColor(new ImagickPixel('green')); // Set the text font size $draw->setFontSize(50); $matrix = $im->queryFontMetrics($draw, $string); $draw->annotation(0, 40, $string); $im->newImage($matrix['textWidth'], $matrix['textHeight'], new ImagickPixel('white')); // Draw the image $im->drawImage($draw); // Roll the Image $im->rollImage(70, 50); $im->setImageFormat('jpeg'); header("Content-Type: image/jpg"); // Display the output image echo $im->getImageBlob(); ?>
Producción:
Referencia: http://php.net/manual/en/imagick.rollimage.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