IMagick is a native PHP extension to create and modify images using the ImageMagick API. ImageMagick Studio LLC did not write nor does it maintain the IMagick extension, however, IMagick users are welcome to discuss the extension here.
Is there a similar way to realize multigradients like shown on http://www.fmwconcepts.com/imagemagick/ ... /index.php? Or, if there isn't, is there an effective way to use Fred's solution as-is within my PHP Imagick project, without writing a tmp-file and reopening it? My aim is, to start the (fully opaque) white not at the center, but at a certain radius.
I doubt that Imagick has anything like my script. It is not maintained as far as I know any longer and has not even kept up with improvements in Imagemagick. My script can be called from PHP exec().
Hi Fred, thanks for your answer! Ah, now I see that what you did is not just an example calling existing ImageMagick commands, in fact you extended ImageMagick with a complex script. Well, of course then there can't be a PHP Imagick command for that
I thought, the fill opacity should sum up to 1 with 100 overlying circles, if I would make it 1/100 - in fact it didn't. That's why I change it in the loop and modified the formula until the result suited my needs.