Jump to content

Imagemagik


dreamwest

Recommended Posts

I found this, it improves the image by up to 200%

 

$im = new imagick( "test.png" );
$im->contrastImage( 1 );
$im->adaptiveBlurImage( 1, 1 );

//output
header( "Content-Type: image/png" );
echo $im;

 

But im still curious if there is something else i can add to this to get an even better image

Link to comment
https://forums.phpfreaks.com/topic/178875-imagemagik/#findComment-943768
Share on other sites

you will definatly want to stick with imagik for this type of stuff.

 

i have found it easiest  to take one of the pics into photoshop and make all adjustments / additions i want noting what tools, filters, etc.. were used.

 

then replicate these steps through imagick.

 

Color correcting is a very subjective thing though. Unless the photos are taken the same way with the same incorrect lighting, the adjustments would be different for each photo.

 

 

Link to comment
https://forums.phpfreaks.com/topic/178875-imagemagik/#findComment-944005
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.