Syntax:bool Imagick::setImageFilename (string $filename)
Parameters:This function takes one parameter,
$filename,which contains a string representing the file name.
Return value:this the function returns TRUE on success.
Exceptions:this function throws an ImagickException on error.The following programs illustrate the
Imagick::setImageFilename() functionin PHP:
Program 1:
// Create a new imagick object
$imagick
=
new
Imagick (
’ https://media.engineerforengineer .org / wp-content / uploads / engineerforengineer-13.png ’
);
// Set file name
$imagick
-> setImageFilename (
’myNewFilename.png’
);
// Get file name
$name
=
$imagick
-> getImageFilename();
echo
$name
;
?>
Output:myNewFilename.png
Program 2:
// Create a new imagick object
$imagick
=
new
Imagick (
’ https://media.engineerforengineer.org/wp-content/uploads/engineerforengineer-13.png ’
);
// Set file name
$imagick
-> setImageFilename (
’myAnotherNewFilename.png’
);
// Get file name
$name
=
$imagick
-> getImageFileName();
// Save the image to the same folder
$imagick
-> writeImage (
$name
);
?>
Output:This program creates a file called myAnotherNewFilename.png in the same folder.
Link: https://www.php.net/ manual / en / imagick.setimagefilename.php
Shop
Best laptop for Sims 4
$
Best laptop for Zoom
$499
Best laptop for Minecraft
$590
Best laptop for engineering student
$
Best laptop for development
$
Best laptop for Cricut Maker
$
Best laptop for hacking
$890
Best laptop for Machine Learning
$950
Latest questions
NUMPYNUMPY
psycopg2: insert multiple rows with one query
12 answers
NUMPYNUMPY
How to convert Nonetype to int or string?
12 answers
NUMPYNUMPY
How to specify multiple return types using type-hints
12 answers
NUMPYNUMPY
Javascript Error: IPython is not defined in JupyterLab
12 answers
Wiki
Python OpenCV | cv2.putText () method
numpy.arctan2 () in Python
Python | os.path.realpath () method
Python OpenCV | cv2.circle () method
Python OpenCV cv2.cvtColor () method
Python - Move item to the end of the list
time.perf_counter () function in Python
Check if one list is a subset of another in Python
Python os.path.join () method