Open In App

PHP | Imagick textureImage() Function

Last Updated : 26 Aug, 2019
Improve
Improve
Like Article
Like
Save
Share
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
      
// 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(
  
// 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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads