Imagick
PHP Manual

Imagick::magnifyImage

(PECL imagick 2.0.0)

Imagick::magnifyImageScales an image proportionally 2x

Beschreibung

bool Imagick::magnifyImage ( void )

Is a convenience method that scales an image proportionally to twice its original size.

Rückgabewerte

Liefert TRUE bei Erfolg.

Fehler/Exceptions

Wirft ImagickException bei Fehlern.

Beispiele

Beispiel #1 Imagick::magnifyImage()

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

?>


Imagick
PHP Manual