Imagick::setImageResolution

(PECL imagick 2.0.0)

Imagick::setImageResolutionSets the image resolution

Descrierea

Imagick::setImageResolution ( float $x_resolution , float $y_resolution ) : bool

Sets the image resolution.

Parametri

x_resolution

y_resolution

Valorile întoarse

Întoarce TRUE în caz de succes.

Erori/Excepții

Emite ImagickException în caz de eroare.

Exemple

Example #1 Imagick::setImageResolution()

<?php
function setImageResolution($imagePath) {
    
$imagick = new \Imagick(realpath($imagePath));
    
$imagick->setImageResolution(5050);
    
    
header("Content-Type: image/jpg");
    echo 
$imagick->getImageBlob();
}

?>