|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-02-17 14:13 UTC] andries at centim dot be
[2012-02-17 14:13 UTC] andries at centim dot be
-Package: *Graphics related
+Package: imagick
[2012-02-17 14:34 UTC] jpauli@php.net
[2012-03-15 17:09 UTC] spam at ethaniel dot com
[2013-12-03 11:31 UTC] mike@php.net
-Assigned To:
+Assigned To: mkoppanen
[2015-01-05 03:30 UTC] danack@php.net
-Status: Assigned
+Status: Feedback
[2015-01-05 03:30 UTC] danack@php.net
[2015-01-05 09:21 UTC] andries at centim dot be
-Status: Feedback
+Status: Assigned
[2015-01-05 09:21 UTC] andries at centim dot be
[2015-01-08 22:16 UTC] danack@php.net
-Status: Assigned
+Status: Wont fix
[2015-01-08 22:16 UTC] danack@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 23:00:01 2025 UTC |
Description: ------------ Imagick::newImage() results in segmentation fault on 64 bit machines. The segfault only occurs on php-cli. Details of my operating system, and relevant installed packages: * Linux vgls66 2.6.34.10-0.6-xen #1 SMP x86_64 x86_64 x86_64 GNU/Linux * Version: ImageMagick 6.6.1-0 2011-09-06 Q16 * PECL extension: Imagick 3.0.1 Test script: --------------- <?php $img = new \Imagick(); $img->newImage(64, 96, new \ImagickPixel('black')); // Segmentation fault Expected result: ---------------- I'm expecting an Imagick object with the given dimensions, and a black background color. Actual result: -------------- Segmentation fault