|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-08-29 14:33 UTC] mkoppanen@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 08 05:00:02 2025 UTC |
Description: ------------ Note, I'm stuck with the latest CVS version and bug may have been fixed in the RC1. Reproduce code: --------------- try{ $img->setImageVirtualPixelMethod(imagick::VIRTUALPIXELMETHOD_TILE); } catch(ImagickException $e) { echo("'Imagick Error: ' , {$e->getMessage()}"); } returns: "Undefined exception". This shows all the virtualpixels constants are good. exec("identify -list virtualpixel", $listarray); And the "-virtual-pixel tile" works here: exec("convert noise.png -virtual-pixel tile -blur 0x5 -normalize IM_noise_blur.png", $error, $msg);