Copy the palette from the src image onto the dst image */
PHP_FUNCTION(imagepalettecopy)
{
+#if HAVE_LIBGD13
zval **dstim, **srcim;
gdImagePtr dst, src;
ZEND_FETCH_RESOURCE(src, gdImagePtr, srcim, -1, "Image", GDG(le_gd));
gdImagePaletteCopy(dst, src);
+#else
+ php_error(E_WARNING, "Sorry ImagePaletteCopy was introduced in GD version 1.5");
+ RETURN_FALSE;
+#endif
}
/* }}} */
Get the index of the color which has the hue, white and blackness nearest to the given color */
PHP_FUNCTION(imagecolorclosesthwb)
{
+#if HAVE_GDIMAGECOLORRESOLVE
zval **imgind, **r, **g, **b;
int col;
gdImagePtr im;
col = gdImageColorClosestHWB(im, Z_LVAL_PP(r), Z_LVAL_PP(g), Z_LVAL_PP(b));
RETURN_LONG(col);
+#else
+ php_error(E_WARNING, "ImageColorClosestHWB functionality was added in GD 1.8");
+ RETURN_FALSE;
+#endif
}
/* }}} */
/* }}} */
/* {{{ proto int imagecopymerge(int src_im, int dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)
- */
+ Merge one part of an image with another*/
PHP_FUNCTION(imagecopymerge)
{
+#if HAVE_LIBGD13
zval **SIM, **DIM, **SX, **SY, **SW, **SH, **DX, **DY, **PCT;
gdImagePtr im_dst;
gdImagePtr im_src;
gdImageCopyMerge(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct);
RETURN_TRUE;
+#else
+ php_error(E_WARNING, "ImageCopyMerge was introduced in GD version 1.5");
+ RETURN_FALSE;
+#endif
}
/* }}} */