#include "php.h"
#include "php_globals.h"
+#include "zend/zend_list.h"
#include "ext/standard/php_standard.h"
#include "ext/standard/head.h"
#include <math.h>
typedef struct cpdflib_global_struct{
int le_cpdf;
int le_outline;
+#if HAVE_LIBGD13
+ int le_gd;
+#endif
} cpdflib_global_struct;
# define CPDF_GLOBAL(a) cpdflib_globals->a
# define CPDF_TLS_VARS
static int le_cpdf;
static int le_outline;
+#if HAVE_LIBGD13
+static int le_gd;
+#endif
#endif
function_entry cpdf_functions[] = {
gid=argv[1]->value.lval;
im = zend_list_find(gid, &type);
- if (!im || type != phpi_get_le_gd()) {
+
+ ZEND_GET_RESOURCE_TYPE_ID(CPDF_GLOBAL(le_gd),"gd");
+ if(!CPDF_GLOBAL(le_gd))
+ {
+ php_error(E_ERROR, "Unable to find handle for GD image stream. Please check the GD extension is loaded.");
+ }
+
+ if (!im || type != CPDF_GLOBAL(le_gd)) {
php_error(E_WARNING, "cpdf: Unable to find image pointer");
RETURN_FALSE;
}
#include "php.h"
#include "php_ini.h"
#include "php_globals.h"
+#include "zend/zend_list.h"
#include "ext/standard/head.h"
#include "ext/standard/info.h"
#include "ext/standard/file.h"
#if HAVE_LIBGD13
#include "ext/gd/php_gd.h"
#include "gd.h"
+static int le_gd;
#endif
#ifdef HAVE_UNISTD_H
}
ZEND_FETCH_RESOURCE(pdf, PDF *, arg1, -1, "pdf object", le_pdf);
- ZEND_FETCH_RESOURCE(im, gdImagePtr, arg2, -1, "Image", phpi_get_le_gd());
+ ZEND_GET_RESOURCE_TYPE_ID(le_gd,"gd");
+ if(!le_gd)
+ {
+ php_error(E_ERROR, "Unable to find handle for GD image stream. Please check the GD extension is loaded.");
+ }
+ ZEND_FETCH_RESOURCE(im, gdImagePtr, arg2, -1, "Image", le_gd);
count = 3 * im->sx * im->sy;
if(NULL == (buffer = (unsigned char *) emalloc(count))) {