I want to apply a curl or peel effect on an image using PHP and ImageMagick.
I tried various libraries in PHP, but only ImageMagick may do the same. I want the same output as here:
I would apply this effect using an overlay image (probably a PNG with alpha) - this could be done either using ImageMagick or in the rendering layer (e.g. HTML/CSS etc)
For PHP/Imagick extension, the Imagick::mergeImageLayers
method is probably useful.