文件操作 - thumbnail.php
返回文件管理
返回主菜单
删除本文件
文件: /usr/local/src/imagick/examples/thumbnail.php
编辑文件内容
<?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(); ?>
修改文件时间
将文件时间修改为当前时间的前一年
删除文件