PHP Classes

File: examples/noise_reduction.php

Recommend this page to a friend!
  Classes of Artur Graniszewski   GD2 Imaging   examples/noise_reduction.php   Download  
File: examples/noise_reduction.php
Role: Example script
Content type: text/plain
Description: Misc file.
Class: GD2 Imaging
Deskew and apply other advanced image effects
Author: By
Last change:
Date: 12 years ago
Size: 146 bytes
 

Contents

Class file image Download
<?php

require_once('../gd2imaging.php');

$image = new Image('noise.PNG');
$image->useMedian($_GET['size'], $_GET['size']);
$image->show();