phMagick :: Image enhancements functions
See each function in action over this image

denoise
<?php $p = new phmagick('original.png', 'destination.png') $p->denoise(); ?>

sharpen
<?php $p = new phmagick('original.png', 'destination.png'); $p->sharpen(); ?>
smooth
<?php $p = new phmagick('original.png', 'destination.png'); $p->smooth(); ?>
saturate
<?php $p = new phmagick('original.png', 'destination.png'); $p->saturate(); ?>
contrast
<?php $p = new phmagick('original.png', 'destination.png'); $p->contrast(); ?>
edges
<?php $p = new phmagick('original.png', 'destination.png'); $p->edges(); ?>





I thought I could find a sketch/pencil effect in your phMagick class. Did I missed? or the feature is not yet included?
By the way thanks for the great program.
Ganesh
What about parameters? It is not really usable with one default parameter for all sizes of image. What about sharpening, but not destroying very small images.