|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-12-05 15:50 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 07:00:01 2025 UTC |
After spending quite a time compiling porperly PHP with XPM, GD and PNG support, the function imagecreatefromxpm is still not working -- My mistake : wrong error display options -- The code says : PHP_FUNCTION(imagecreatefromxpm) { /* #ifdef HAVE_GD_XPM _php_image_create_from(INTERNAL_FUNCTION_PARAM_PASSTHRU, PHP_GDIMG_TYPE_XPM, "XPM", gdImageCreateFromXpm, NULL); #else */ php_error_docref(NULL TSRMLS_CC, E_WARNING, "No XPM support in this PHP build"); RETURN_FALSE; /* #endif */ } So the function is never properly define. So either fix the doc or code the function. It is the exact same in php-4.2.3, php-4.1.2 and php-4.0.6 Was XPM support one day really supported ?