|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2008-12-17 09:36 UTC] me at reso dot od dot ua
Description: ------------ It doesn't seem like convolveImage is working. I ahve been trying to supply different simple matrixes but they have no effect on the resulting image at all. The same is happening with fxImage. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 00:00:02 2025 UTC |
Can you test the following code: <?php $i = new imagick("test.png"); $i->setImageBias(10000); $kernel = array( 0,1,0, 1,1,1, 0,1,0); $i->convolveImage($kernel); header('Content-Type: image/png'); echo $i;