dreamwest Posted October 24, 2009 Share Posted October 24, 2009 Im trying to improve the quality of some images, they are all jpg. What is the best Imagemagik or GD function to do this?? Link to comment https://forums.phpfreaks.com/topic/178875-imagemagik/ Share on other sites More sharing options...
severndigital Posted October 25, 2009 Share Posted October 25, 2009 improve them in what way? Unfortunately contrary to its name imagemagik is not magic ... Link to comment https://forums.phpfreaks.com/topic/178875-imagemagik/#findComment-943730 Share on other sites More sharing options...
dreamwest Posted October 25, 2009 Author Share Posted October 25, 2009 I want to increase photo quality and give it a touch of HD glamour. Ill need to put it thorugh some filters- Sharpen, resolution etc.. Link to comment https://forums.phpfreaks.com/topic/178875-imagemagik/#findComment-943766 Share on other sites More sharing options...
dreamwest Posted October 25, 2009 Author Share Posted October 25, 2009 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 More sharing options...
severndigital Posted October 25, 2009 Share Posted October 25, 2009 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.