Description of problem: Some functions into wrapper pecl-imagick shows wrong deprecate warnings ! Version-Release number of selected component (if applicable): Same on Fedora 11 & 12 How reproducible: Always Steps to Reproduce: 1.Following code <?php error_reporting(E_ALL | E_STRICT); ini_set('display_errors', true); $image = new Imagick("./homeNavBtmBg.png"); $image->colorFloodfillImage( "red", 0, "white", 1, 1); echo method_exists($image, 'floodFillPaintImage') ? 'method floodFillPaintImage exists' : 'method floodFillPaintImage dont exist'; echo method_exists($image, 'paintFloodFillImage') ? 'method paintFloodFillImage exists' : 'method paintFloodFillImage dont exist'; echo method_exists($image, 'floodFillColorImage') ? 'method floodFillColorImage exists' : 'method floodFillColorImage dont exist'; echo method_exists($image, 'colorFloodFillImage') ? 'method colorFloodFillImage exists' : 'method colorFloodFillImage dont exist'; ?> Actual results: method floodFillPaintImage dont exist method paintFloodFillImage exist method floodFillColorImage dont exist method colorFloodFillImage exists Expected results: method floodFillPaintImage exist method floodFillColorImage exist Additional info: ImageMagick-6.5.1.2-2.fc11.x86_64 php-pecl-imagick-2.2.2-2.fc11.x86_64 I have heard problem is fixed in version 2.3.0 (stable) of php-pecl-imagick but fedora 12 and even 13 still stick with version 2.2.2 whereas functions in ImageMagick differs, why ? http://pecl.php.net/package/imagick
Request version update was fully enough ;) Please, try this build: http://koji.fedoraproject.org/koji/taskinfo?taskID=2189139
Well i'm not used to bugzilla , only my 2nd time submit in 10years+ ;) I wonder .. fedora 13 will be out in a couple of days , how come it's still using this php-pecl-imagick-2.2 version which seems quite old ? I'll be trying php-pecl-imagick-2.3.0-5.fc14.src.rpm, x86_64 asap and make feedback , hope it builds on fc11 :) Regards
Oh, I did not look you speak about Fedora 11. It is EOL coming in few days... I do not see any reason update something in it... Off course in Fedora 13 I'll do that.
Sorry for this assumed lame question but, how may i get php-pecl-imagick-2.3.0-5.fc14.src.rpm, x86_64 from your link http://koji.fedoraproject.org/koji/taskinfo?taskID=2189139 I tried with koji i could only get regular 2.2.2 package and koji download-build 2189139 returns no such build. "koji latest-pkg dist-f13 php-pecl-imagick" returns 2.2.2-4 as expected.
Ok, look this for Fedora 11 http://koji.fedoraproject.org/koji/taskinfo?taskID=2190126
Sorry for late update ! Builds and works perfectly ! Thank you very much.