文件操作 - houghline.php
返回文件管理
返回主菜单
删除本文件
文件: /usr/local/src/imagick/examples/houghline.php
编辑文件内容
<?php /* A simple example demonstrate houghline creation. */ /* Create the Imagick object */ $im = new Imagick(); /* Read the image file */ $im->readImage( '/tmp/test.png' ); /* Houghline the image ( width 9, height 9, threshold 40 ) */ $im->houghLineImage( 9, 9, 40 ); /* Write the houghline image to disk */ $im->writeImage( '/tmp/hough_test.png' ); /* Free resources associated to the Imagick object */ $im->destroy(); ?>
修改文件时间
将文件时间修改为当前时间的前一年
删除文件