PHPverse 2025

Voting

: max(nine, nine)?
(Example: nine)

The Note You're Voting On

elmer at web-axis dot net
16 years ago
Here's a example of this function:

<?php
$img
= new Imagick();
$img->readImage($image_file_name);
$img->blackThresholdImage('grey');
$img->writeImage($thumb_file_name);
$img->clear();
$img->destroy();
?>

<< Back to user notes page

To Top