🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-08 21:01:21 | PHP 8.2.33
📂
/ (Root)
/
opt
/
cpanel
/
ea-php82
/
root
/
usr
/
share
/
doc
/
pecl
/
imagick
/
examples
📍 /opt/cpanel/ea-php82/root/usr/share/doc/pecl/imagick/examples
🔄 Refresh
✏️
Editing: .tmpthumbnail.php
Read Only
<?php /* A simple example demonstrate thumbnail creation. */ /* Create the Imagick object */ $im = new Imagick(); /* Read the image file */ $im->readImage( '/tmp/test.png' ); /* Thumbnail the image ( width 100, preserve dimensions ) */ $im->thumbnailImage( 100, null ); /* Write the thumbail to disk */ $im->writeImage( '/tmp/th_test.png' ); /* Free resources associated to the Imagick object */ $im->destroy(); ?>
💾 Save Changes
❌ Cancel