imagemagickis an image processing software with powerful image processing capabilities. This article uses PHP to call imagemagick to process the image into an old photo effect. imagemagick address: www.imagemagick.org
You need to install imagemagick. The installation method is as follows: Click to view
To use imagemagick to generate old photo effects, you need to perform the following steps
1 .Use the sepia-tone filter to process the input image
2. Generate a white mask, fill it with random noise, convert it to grayscale, and add an alpha channel
3. Use the results of steps 1 and 2 Overlay method compose
The code is as follows:
';echo '原图
';echo '';echo '效果图
';echo '';?>
Comparison of the original image and the generated old photo effect
imagemagickis an image processing software with powerful image processing capabilities. This article uses PHP to call imagemagick to process the image into an old photo effect.
imagemagick address: www.imagemagick.org
You need to install imagemagick. The installation method is as follows: click to view
This article explains how to use php imagemagick to achieve the old photo effect. For more related content, please pay attention to the php Chinese website.
Related recommendations:
About PHP's explanation of calculating the Cartesian product of multiple sets
About the use of PHP file containing directory configuration open_basedir And performance analysis
Explanation on the solution to cookie loss in ajax cross-domain access
The above is the detailed content of How to call php imagemagick to achieve old photo effect. For more information, please follow other related articles on the PHP Chinese website!