La función Imagick::getImageInterpolateMethod() es una función incorporada en PHP que se usa para obtener el método de interpolación para la imagen especificada.
Sintaxis:
int Imagick::getImageInterpolateMethod( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve un valor entero que contiene el método de interpolación que corresponde a una de las constantes INTERPOLATE.
La lista de constantes de INTERPOLAR se proporciona a continuación:
- imagick::INTERPOLATE_UNDEFINED (0)
- imagick::INTERPOLATE_AVERAGE (1)
- imagick::INTERPOLATE_BICUBIC (2)
- imagick::INTERPOLATE_BILINEAR (3)
- imagick::INTERPOLATE_FILTER (4)
- imagick::INTERPOLATE_INTEGER (5)
- imagick::INTERPOLATE_MESH (6)
- imagick::INTERPOLATE_NEARESTNEIGHBOR (7)
- imagick::INTERPOLATE_SPLINE (8)
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función Imagick::getImageInterpolateMethod() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Get the Interpolate Method $interpolateScheme = $imagick->getImageInterpolateMethod(); echo $interpolateScheme ?>
Producción:
0 // which corresponds to imagick::INTERPOLATE_UNDEFINED.
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Set the Interpolate Method $imagick->setImageInterpolateMethod(imagick::INTERPOLATE_MESH); // Get the Interpolate Method $interpolateScheme = $imagick->getImageInterpolateMethod(); echo $interpolateScheme; ?>
Producción:
6 // which corresponds to imagick::INTERPOLATE_MESH
Referencia: https://www.php.net/manual/en/imagick.getimageinterpolatemethod.php