Tuesday, September 24, 2024
Google search engine
HomeLanguagesPHP | Imagick setImageArtifact() Function

PHP | Imagick setImageArtifact() Function

The Imagick::setImageArtifact() function is an inbuilt function in PHP which is used to set the image artifact. The main difference between image properties and image artifacts is that the properties are public whereas artifacts are private.

Syntax:

bool Imagick::setImageArtifact( string $artifact, string $value )

Parameters: This function accepts two parameters as mentioned above and described below:

  • $artifact: This parameter holds the name of the artifact.
  • $value: This parameter holds the value of the artifact.

Return Value: This function returns TRUE on success.

Errors/Exceptions: This function throws ImagickException on error.

Below program illustrates the Imagick::setImageArtifact() function in PHP:

Program:




<?php
  
// Create two new Imagick objects
$imagick1 = new Imagick(
  
$imagick2 = new Imagick(
  
// Apply the setImageArtifact() function
$imagick2->setImageArtifact('compose:args', "0, 1, 0.4, -0.6");
$imagick1->compositeImage($imagick2, Imagick::COMPOSITE_MATHEMATICS, 0, 0);
  
// Display the output image
$imagick1->setImageFormat('png');
  
header("Content-Type: image/png");
  
echo $imagick1->getImagesBlob();
  
?>


Output:

Reference: https://www.php.net/manual/en/imagick.setimageartifact.php

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments