PHP Classes

File: examples/hsv.php

Recommend this page to a friend!
  Classes of Artur Graniszewski   GD2 Imaging   examples/hsv.php   Download  
File: examples/hsv.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: 213 bytes
 

Contents

Class file image Download
<?php

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

$image = new Image('hawaii.jpg');
// Luminance set to 140%
$image->setLuminance(1.4);
// Color saturation set to 220%
$image->setSaturation(2.2);
$image->show();