Thursday, November 13, 2025
HomeLanguagesPHP | Gmagick getsamplingfactors() Function

PHP | Gmagick getsamplingfactors() Function

The Gmagick::getsamplingfactors() function is an inbuilt function in PHP which is used to return the horizontal and vertical sampling factor. Sampling factors are used for compression of JPG. If this option is not set using setsamplingfactors() function then the default JPG sampling factors are used.

Syntax:

array Gmagick::getsamplingfactors( void )

Parameters:This function doesn’t accept any parameter.

Return Value: This function returns an associative array containing the values of sampling factors.

Exceptions: This function throws GmagickException on error.

Below given programs illustrate the Gmagick::getsamplingfactors() function in PHP:

Program 1:




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('neveropen.png');
   
// Get the image sampling factors
$res = $gmagick->getsamplingfactors();
print("<pre>".print_r($res, true)."</pre>");
?>


Output:

Array  // which is the default empty array
(
)

Program 2:




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('neveropen.png');
  
// Set the image sampling factors
$gmagick->setsamplingfactors(array(3, 4, 5));
  
// Get the image sampling factors
$res = $gmagick->getsamplingfactors();
print("<pre>".print_r($res, true)."</pre>");
?>


Output:

Array
(
    [0] => 3
    [1] => 4
    [2] => 5
)

Reference: https://www.php.net/manual/en/gmagick.getsamplingfactors.php

RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11916 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7141 POSTS0 COMMENTS
Thapelo Manthata
6836 POSTS0 COMMENTS
Umr Jansen
6839 POSTS0 COMMENTS