Image to Sketch Diff. Result ..
Posted: 2012-06-19T14:36:30-07:00
HI i am using a photoshop Technique to make sketch here is url
http://www.photoshopessentials.com/phot ... to-sketch/
and here is the Result of my image
http://imagepick.heliohost.org/images/Untitled-2.jpg
Using Photoshop
And here is the code
for my PHP FIle
Here is the result
http://imagepick.heliohost.org/images/file.jpg
See the diff. i think its becase of gaussianBlurImage but i can't find the exact values to put i tried reading new technique for this but :'(
Please if anybody can help
Thanks
http://www.photoshopessentials.com/phot ... to-sketch/
and here is the Result of my image
http://imagepick.heliohost.org/images/Untitled-2.jpg
Using Photoshop
And here is the code
for my PHP FIle
Code: Select all
<?php
$average = new Imagick("ph1.jpg");
$average->modulateImage(100,0,100);
$av=$average->clone();
$average->negateImage( FALSE, imagick::CHANNEL_ALL );
$average->gaussianBlurImage( 5,5,imagick::CHANNEL_ALL);
$average->compositeImage($av,imagick::COMPOSITE_COLORDODGE,0,0,imagick::CHANNEL_ALL);
header('Content-type: image/jpeg');
echo $average;
?>
http://imagepick.heliohost.org/images/file.jpg
See the diff. i think its becase of gaussianBlurImage but i can't find the exact values to put i tried reading new technique for this but :'(
Please if anybody can help
Thanks