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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.