Open In App

PHP | Imagick textureImage() Function

Last Updated : 26 Aug, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The Imagick::textureImage() function is an inbuilt function in PHP which creates repeatedly tiles the texture image. Syntax:
Imagick Imagick::textureImage( $texture_wand )
Parameter: This function accepts single parameter $texture_wand. It is an Imagick object to use as texture image. Return Value: This function returns a new Imagick object that has the repeated texture applied. Errors/Exceptions: This function throws ImagickException on error. Below program illustrates the Imagick::textureImage() function in PHP: Program: php
<?php
    
// Create an imagick object
$image = new Imagick();

// Create an image of given size
$image->newImage(640, 480, new ImagickPixel('green'));

// Set the image format
$image->setImageFormat("jpg");

// Take image input and create imagick object
$texture = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');

// Scale the image
$texture->scaleimage($image->getimagewidth() / 4, $image->getimageheight() / 4);

// textureImage function
$image = $image->textureImage($texture);
header("Content-Type: image/jpg");

// Display the image
echo $image;
?>
Output: texture image Related Articles: Reference: http://php.net/manual/en/imagick.textureimage.php

Next Article
Practice Tags :

Similar Reads