Saturday, January 31, 2026
HomeLanguagesPHP | Imagick setPointSize() Function

PHP | Imagick setPointSize() Function

The Imagick::setPointSize() function is an inbuilt function in PHP which is used to set the point size of imagick object.

Syntax:

bool Imagick::setPointSize( int $point_size )

Parameters: This function accepts a single parameter $point_size which holds the size of point.

Return Value: This function returns TRUE on success.

Exceptions: This function throws ImagickException on error.

Below given programs illustrate the Imagick::setPointSize() function in PHP:

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick();
  
// Set point size
$imagick->setPointSize(50);
  
// Create a caption
$imagick->newPseudoImage(800, 250, "caption:neveropen");
  
// Show the output
$imagick->setformat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>


Output:

Program 2:




<?php
  
// Create a new imagick object
$imagick = new Imagick();
  
// Set point size
$imagick->setPointSize(400);
  
// Create a caption
$imagick->newPseudoImage(800, 250, "caption:neveropen");
  
// Add border
$imagick->borderImage('black', 1, 1);
  
// Show the output
$imagick->setformat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>


Output:

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

RELATED ARTICLES

Most Popular

Dominic
32478 POSTS0 COMMENTS
Milvus
122 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12066 POSTS0 COMMENTS
Shaida Kate Naidoo
6987 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6917 POSTS0 COMMENTS