1999-04-16 20:15:38 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
1999-07-16 21:13:16 +08:00
|
|
|
| PHP version 4.0 |
|
1999-04-16 20:15:38 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-01-01 09:32:05 +08:00
|
|
|
| Copyright (c) 1997, 1998, 1999, 2000 The PHP Group |
|
1999-04-16 20:15:38 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-02-20 07:21:46 +08:00
|
|
|
| This source file is subject to version 2.01 of the PHP license, |
|
1999-07-16 21:13:16 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
2000-02-20 07:21:46 +08:00
|
|
|
| http://www.php.net/license/2_01.txt. |
|
1999-07-16 21:13:16 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
1999-04-16 20:15:38 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Rasmus Lerdorf <rasmus@lerdorf.on.ca> |
|
|
|
|
| Stig Bakken <ssb@guardian.no> |
|
|
|
|
| Jim Winstead <jimw@php.net> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/* gd 1.2 is copyright 1994, 1995, Quest Protein Database Center,
|
|
|
|
Cold Spring Harbor Labs. */
|
|
|
|
|
|
|
|
/* Note that there is no code from the gd package in this file */
|
1999-04-24 04:06:01 +08:00
|
|
|
|
1999-04-16 20:15:38 +08:00
|
|
|
#include "php.h"
|
1999-04-22 08:25:57 +08:00
|
|
|
#include "ext/standard/head.h"
|
1999-04-16 20:15:38 +08:00
|
|
|
#include <math.h>
|
1999-04-27 01:26:37 +08:00
|
|
|
#include "SAPI.h"
|
1999-12-05 03:19:57 +08:00
|
|
|
#include "php_gd.h"
|
1999-04-16 20:15:38 +08:00
|
|
|
|
|
|
|
#if HAVE_SYS_WAIT_H
|
|
|
|
# include <sys/wait.h>
|
|
|
|
#endif
|
|
|
|
#if HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#if WIN32|WINNT
|
|
|
|
# include <io.h>
|
|
|
|
# include <fcntl.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAVE_LIBGD
|
|
|
|
#include <gd.h>
|
|
|
|
#include <gdfontt.h> /* 1 Tiny font */
|
|
|
|
#include <gdfonts.h> /* 2 Small font */
|
|
|
|
#include <gdfontmb.h> /* 3 Medium bold font */
|
|
|
|
#include <gdfontl.h> /* 4 Large font */
|
|
|
|
#include <gdfontg.h> /* 5 Giant font */
|
1999-07-23 23:18:37 +08:00
|
|
|
#ifdef ENABLE_GD_TTF
|
1999-04-22 05:27:18 +08:00
|
|
|
# include "gdttf.h"
|
1999-04-16 20:15:38 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef M_PI
|
|
|
|
#define M_PI 3.14159265358979323846
|
|
|
|
#endif
|
|
|
|
|
1999-07-23 23:18:37 +08:00
|
|
|
#ifdef ENABLE_GD_TTF
|
1999-12-18 05:50:07 +08:00
|
|
|
static void php_imagettftext_common(INTERNAL_FUNCTION_PARAMETERS, int);
|
1999-04-16 20:15:38 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef THREAD_SAFE
|
|
|
|
DWORD GDlibTls;
|
|
|
|
static int numthreads=0;
|
|
|
|
void *gdlib_mutex=NULL;
|
|
|
|
|
|
|
|
typedef struct gdlib_global_struct{
|
|
|
|
int le_gd;
|
|
|
|
int le_gd_font;
|
|
|
|
} gdlib_global_struct;
|
|
|
|
|
|
|
|
# define GD_GLOBAL(a) gdlib_globals->a
|
|
|
|
# define GD_TLS_VARS gdlib_global_struct *gdlib_globals = TlsGetValue(GDlibTls);
|
|
|
|
|
|
|
|
#else
|
|
|
|
# define GD_GLOBAL(a) a
|
|
|
|
# define GD_TLS_VARS
|
|
|
|
int le_gd;
|
|
|
|
int le_gd_font;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
function_entry gd_functions[] = {
|
1999-07-28 03:44:46 +08:00
|
|
|
PHP_FE(imagearc, NULL)
|
|
|
|
PHP_FE(imagechar, NULL)
|
|
|
|
PHP_FE(imagecharup, NULL)
|
|
|
|
PHP_FE(imagecolorallocate, NULL)
|
|
|
|
PHP_FE(imagecolorat, NULL)
|
|
|
|
PHP_FE(imagecolorclosest, NULL)
|
|
|
|
PHP_FE(imagecolordeallocate, NULL)
|
|
|
|
PHP_FE(imagecolorresolve, NULL)
|
|
|
|
PHP_FE(imagecolorexact, NULL)
|
|
|
|
PHP_FE(imagecolorset, NULL)
|
|
|
|
PHP_FE(imagecolortransparent, NULL)
|
|
|
|
PHP_FE(imagecolorstotal, NULL)
|
|
|
|
PHP_FE(imagecolorsforindex, NULL)
|
|
|
|
PHP_FE(imagecopy, NULL)
|
|
|
|
PHP_FE(imagecopyresized, NULL)
|
|
|
|
PHP_FE(imagecreate, NULL)
|
1999-10-17 22:57:49 +08:00
|
|
|
#ifdef HAVE_GD_PNG
|
|
|
|
PHP_FE(imagecreatefrompng, NULL)
|
|
|
|
PHP_FE(imagepng, NULL)
|
1999-11-25 05:43:54 +08:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_GD_GIF
|
1999-07-28 03:44:46 +08:00
|
|
|
PHP_FE(imagecreatefromgif, NULL)
|
1999-10-17 22:57:49 +08:00
|
|
|
PHP_FE(imagegif, NULL)
|
|
|
|
#endif
|
1999-07-28 03:44:46 +08:00
|
|
|
PHP_FE(imagedestroy, NULL)
|
|
|
|
PHP_FE(imagefill, NULL)
|
|
|
|
PHP_FE(imagefilledpolygon, NULL)
|
|
|
|
PHP_FE(imagefilledrectangle, NULL)
|
|
|
|
PHP_FE(imagefilltoborder, NULL)
|
|
|
|
PHP_FE(imagefontwidth, NULL)
|
|
|
|
PHP_FE(imagefontheight, NULL)
|
|
|
|
PHP_FE(imageinterlace, NULL)
|
|
|
|
PHP_FE(imageline, NULL)
|
|
|
|
PHP_FE(imageloadfont, NULL)
|
|
|
|
PHP_FE(imagepolygon, NULL)
|
|
|
|
PHP_FE(imagerectangle, NULL)
|
|
|
|
PHP_FE(imagesetpixel, NULL)
|
|
|
|
PHP_FE(imagestring, NULL)
|
|
|
|
PHP_FE(imagestringup, NULL)
|
|
|
|
PHP_FE(imagesx, NULL)
|
|
|
|
PHP_FE(imagesy, NULL)
|
|
|
|
PHP_FE(imagedashedline, NULL)
|
1999-07-23 23:18:37 +08:00
|
|
|
#ifdef ENABLE_GD_TTF
|
1999-07-28 03:44:46 +08:00
|
|
|
PHP_FE(imagettfbbox, NULL)
|
|
|
|
PHP_FE(imagettftext, NULL)
|
1999-04-16 20:15:38 +08:00
|
|
|
#endif
|
|
|
|
{NULL, NULL, NULL}
|
|
|
|
};
|
|
|
|
|
1999-12-18 04:55:31 +08:00
|
|
|
zend_module_entry gd_module_entry = {
|
1999-07-28 03:44:46 +08:00
|
|
|
"gd", gd_functions, PHP_MINIT(gd), PHP_MSHUTDOWN(gd), NULL, NULL, PHP_MINFO(gd), STANDARD_MODULE_PROPERTIES
|
1999-04-16 20:15:38 +08:00
|
|
|
};
|
|
|
|
|
1999-12-04 22:45:38 +08:00
|
|
|
#ifdef COMPILE_DL_GD
|
1999-12-02 06:59:45 +08:00
|
|
|
# include "dl/phpdl.h"
|
1999-12-18 04:55:31 +08:00
|
|
|
DLEXPORT zend_module_entry *get_module(void) { return &gd_module_entry; }
|
1999-04-16 20:15:38 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#define PolyMaxPoints 256
|
|
|
|
|
1999-12-18 05:50:07 +08:00
|
|
|
static void php_free_gd_font(gdFontPtr fp)
|
|
|
|
{
|
|
|
|
if (fp->data) {
|
|
|
|
efree(fp->data);
|
|
|
|
}
|
|
|
|
efree(fp);
|
|
|
|
}
|
|
|
|
|
1999-04-16 20:15:38 +08:00
|
|
|
|
1999-07-28 03:44:46 +08:00
|
|
|
PHP_MINIT_FUNCTION(gd)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
#if defined(THREAD_SAFE)
|
|
|
|
gdlib_global_struct *gdlib_globals;
|
|
|
|
PHP3_MUTEX_ALLOC(gdlib_mutex);
|
|
|
|
PHP3_MUTEX_LOCK(gdlib_mutex);
|
|
|
|
numthreads++;
|
|
|
|
if (numthreads==1){
|
|
|
|
if (!PHP3_TLS_PROC_STARTUP(GDlibTls)){
|
|
|
|
PHP3_MUTEX_UNLOCK(gdlib_mutex);
|
|
|
|
PHP3_MUTEX_FREE(gdlib_mutex);
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PHP3_MUTEX_UNLOCK(gdlib_mutex);
|
|
|
|
if(!PHP3_TLS_THREAD_INIT(GDlibTls,gdlib_globals,gdlib_global_struct)){
|
|
|
|
PHP3_MUTEX_FREE(gdlib_mutex);
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
GD_GLOBAL(le_gd) = register_list_destructors(gdImageDestroy, NULL);
|
1999-12-18 05:50:07 +08:00
|
|
|
GD_GLOBAL(le_gd_font) = register_list_destructors(php_free_gd_font, NULL);
|
1999-04-16 20:15:38 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
1999-07-28 03:44:46 +08:00
|
|
|
PHP_MINFO_FUNCTION(gd)
|
1999-05-09 21:57:09 +08:00
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
/* need to use a PHPAPI function here because it is external module in windows */
|
1999-11-30 07:21:52 +08:00
|
|
|
#if HAVE_GDIMAGECOLORRESOLVE
|
|
|
|
php_printf("Version 1.6.2 or higher");
|
|
|
|
#elif HAVE_LIBGD13
|
|
|
|
php_printf("Version between 1.3 and 1.6.1");
|
1999-04-16 20:15:38 +08:00
|
|
|
#else
|
1999-08-03 03:17:14 +08:00
|
|
|
php_printf("Version 1.2");
|
1999-04-16 20:15:38 +08:00
|
|
|
#endif
|
1999-11-30 07:21:52 +08:00
|
|
|
|
1999-07-23 23:18:37 +08:00
|
|
|
#ifdef ENABLE_GD_TTF
|
1999-08-03 03:17:14 +08:00
|
|
|
php_printf(" with FreeType support");
|
1999-11-30 07:21:52 +08:00
|
|
|
#if HAVE_LIBFREETYPE
|
|
|
|
php_printf(" (linked with freetype)");
|
|
|
|
#elif HAVE_LIBTTF
|
|
|
|
php_printf(" (linked with ttf library)");
|
|
|
|
#else
|
|
|
|
php_printf(" (linked with unknown library)");
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
php_printf(" which supports:");
|
|
|
|
|
|
|
|
#ifdef HAVE_GD_GIF
|
|
|
|
php_printf(" GIF");
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_GD_PNG
|
|
|
|
php_printf(" PNG");
|
1999-04-16 20:15:38 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1999-07-28 03:44:46 +08:00
|
|
|
PHP_MSHUTDOWN_FUNCTION(gd)
|
1999-04-27 01:26:37 +08:00
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
GD_TLS_VARS;
|
|
|
|
#ifdef THREAD_SAFE
|
|
|
|
PHP3_TLS_THREAD_FREE(gdlib_globals);
|
|
|
|
PHP3_MUTEX_LOCK(gdlib_mutex);
|
|
|
|
numthreads--;
|
|
|
|
if (numthreads<1) {
|
|
|
|
PHP3_TLS_PROC_SHUTDOWN(GDlibTls);
|
|
|
|
PHP3_MUTEX_UNLOCK(gdlib_mutex);
|
|
|
|
PHP3_MUTEX_FREE(gdlib_mutex);
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
PHP3_MUTEX_UNLOCK(gdlib_mutex);
|
|
|
|
#endif
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
1999-08-06 00:25:10 +08:00
|
|
|
/* Need this for cpdf. See also comment in file.c php3i_get_le_fp() */
|
1999-12-18 05:50:07 +08:00
|
|
|
PHPAPI int phpi_get_le_gd(void)
|
|
|
|
{
|
1999-08-06 00:25:10 +08:00
|
|
|
GD_TLS_VARS;
|
|
|
|
return GD_GLOBAL(le_gd);
|
|
|
|
}
|
|
|
|
|
1999-10-17 22:57:49 +08:00
|
|
|
#ifndef HAVE_GDIMAGECOLORRESOLVE
|
|
|
|
|
1999-04-16 20:15:38 +08:00
|
|
|
/********************************************************************/
|
|
|
|
/* gdImageColorResolve is a replacement for the old fragment: */
|
|
|
|
/* */
|
|
|
|
/* if ((color=gdImageColorExact(im,R,G,B)) < 0) */
|
|
|
|
/* if ((color=gdImageColorAllocate(im,R,G,B)) < 0) */
|
|
|
|
/* color=gdImageColorClosest(im,R,G,B); */
|
|
|
|
/* */
|
|
|
|
/* in a single function */
|
|
|
|
|
|
|
|
int
|
|
|
|
gdImageColorResolve(gdImagePtr im, int r, int g, int b)
|
|
|
|
{
|
|
|
|
int c;
|
|
|
|
int ct = -1;
|
|
|
|
int op = -1;
|
|
|
|
long rd, gd, bd, dist;
|
|
|
|
long mindist = 3*255*255; /* init to max poss dist */
|
|
|
|
|
|
|
|
for (c = 0; c < im->colorsTotal; c++) {
|
|
|
|
if (im->open[c]) {
|
|
|
|
op = c; /* Save open slot */
|
|
|
|
continue; /* Color not in use */
|
|
|
|
}
|
|
|
|
rd = (long)(im->red [c] - r);
|
|
|
|
gd = (long)(im->green[c] - g);
|
|
|
|
bd = (long)(im->blue [c] - b);
|
|
|
|
dist = rd * rd + gd * gd + bd * bd;
|
|
|
|
if (dist < mindist) {
|
|
|
|
if (dist == 0) {
|
|
|
|
return c; /* Return exact match color */
|
|
|
|
}
|
|
|
|
mindist = dist;
|
|
|
|
ct = c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* no exact match. We now know closest, but first try to allocate exact */
|
|
|
|
if (op == -1) {
|
|
|
|
op = im->colorsTotal;
|
|
|
|
if (op == gdMaxColors) { /* No room for more colors */
|
|
|
|
return ct; /* Return closest available color */
|
|
|
|
}
|
|
|
|
im->colorsTotal++;
|
|
|
|
}
|
|
|
|
im->red [op] = r;
|
|
|
|
im->green[op] = g;
|
|
|
|
im->blue [op] = b;
|
|
|
|
im->open [op] = 0;
|
|
|
|
return op; /* Return newly allocated color */
|
|
|
|
}
|
|
|
|
|
1999-10-17 22:57:49 +08:00
|
|
|
#endif
|
|
|
|
|
1999-04-16 20:15:38 +08:00
|
|
|
/* {{{ proto int imageloadfont(string filename)
|
1999-11-25 06:04:49 +08:00
|
|
|
Load a new font */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(imageloadfont) {
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *file;
|
|
|
|
int hdr_size = sizeof(gdFont) - sizeof(char *);
|
|
|
|
int ind, body_size, n=0, b;
|
|
|
|
gdFontPtr font;
|
|
|
|
FILE *fp;
|
|
|
|
int issock=0, socketd=0;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 1 || zend_get_parameters(ht, 1, &file) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_string(file);
|
|
|
|
|
|
|
|
#if WIN32|WINNT
|
|
|
|
fp = fopen(file->value.str.val, "rb");
|
|
|
|
#else
|
1999-12-18 03:16:50 +08:00
|
|
|
fp = php_fopen_wrapper(file->value.str.val, "r", IGNORE_PATH|IGNORE_URL_WIN, &issock, &socketd, NULL);
|
1999-04-16 20:15:38 +08:00
|
|
|
#endif
|
|
|
|
if (fp == NULL) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "ImageFontLoad: unable to open file");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Only supports a architecture-dependent binary dump format
|
|
|
|
* at the moment.
|
|
|
|
* The file format is like this on machines with 32-byte integers:
|
|
|
|
*
|
|
|
|
* byte 0-3: (int) number of characters in the font
|
|
|
|
* byte 4-7: (int) value of first character in the font (often 32, space)
|
|
|
|
* byte 8-11: (int) pixel width of each character
|
|
|
|
* byte 12-15: (int) pixel height of each character
|
|
|
|
* bytes 16-: (char) array with character data, one byte per pixel
|
|
|
|
* in each character, for a total of
|
|
|
|
* (nchars*width*height) bytes.
|
|
|
|
*/
|
|
|
|
font = (gdFontPtr)emalloc(sizeof(gdFont));
|
|
|
|
b = 0;
|
|
|
|
while (b < hdr_size && (n = fread(&font[b], 1, hdr_size - b, fp)))
|
|
|
|
b += n;
|
|
|
|
if (!n) {
|
|
|
|
fclose(fp);
|
|
|
|
efree(font);
|
|
|
|
if (feof(fp)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "ImageFontLoad: end of file while reading header");
|
1999-04-16 20:15:38 +08:00
|
|
|
} else {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "ImageFontLoad: error while reading header");
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
body_size = font->w * font->h * font->nchars;
|
|
|
|
font->data = emalloc(body_size);
|
|
|
|
b = 0;
|
|
|
|
while (b < body_size && (n = fread(&font->data[b], 1, body_size - b, fp)))
|
|
|
|
b += n;
|
|
|
|
if (!n) {
|
|
|
|
fclose(fp);
|
|
|
|
efree(font->data);
|
|
|
|
efree(font);
|
|
|
|
if (feof(fp)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "ImageFontLoad: end of file while reading body");
|
1999-04-16 20:15:38 +08:00
|
|
|
} else {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "ImageFontLoad: error while reading body");
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
/* Adding 5 to the font index so we will never have font indices
|
|
|
|
* that overlap with the old fonts (with indices 1-5). The first
|
|
|
|
* list index given out is always 1.
|
|
|
|
*/
|
1999-12-18 03:51:39 +08:00
|
|
|
ind = 5 + zend_list_insert(font, GD_GLOBAL(le_gd_font));
|
1999-04-16 20:15:38 +08:00
|
|
|
|
|
|
|
RETURN_LONG(ind);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagecreate(int x_size, int y_size)
|
1999-11-25 06:04:49 +08:00
|
|
|
Create a new image */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagecreate)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *x_size, *y_size;
|
|
|
|
int ind;
|
|
|
|
gdImagePtr im;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 2 || zend_get_parameters(ht, 2, &x_size, &y_size) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(x_size);
|
|
|
|
convert_to_long(y_size);
|
|
|
|
|
|
|
|
im = gdImageCreate(x_size->value.lval, y_size->value.lval);
|
1999-12-18 03:51:39 +08:00
|
|
|
ind = zend_list_insert(im, GD_GLOBAL(le_gd));
|
1999-04-16 20:15:38 +08:00
|
|
|
|
|
|
|
RETURN_LONG(ind);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
1999-10-17 22:57:49 +08:00
|
|
|
#ifdef HAVE_GD_PNG
|
|
|
|
|
|
|
|
/* {{{ proto int imagecreatefrompng(string filename)
|
1999-11-25 06:04:49 +08:00
|
|
|
Create a new image from file or URL */
|
1999-12-18 05:50:07 +08:00
|
|
|
PHP_FUNCTION(imagecreatefrompng)
|
|
|
|
{
|
1999-10-17 22:57:49 +08:00
|
|
|
pval *file;
|
|
|
|
int ind;
|
|
|
|
gdImagePtr im;
|
|
|
|
char *fn=NULL;
|
|
|
|
FILE *fp;
|
|
|
|
int issock=0, socketd=0;
|
|
|
|
GD_TLS_VARS;
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 1 || zend_get_parameters(ht, 1, &file) == FAILURE) {
|
1999-10-17 22:57:49 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
convert_to_string(file);
|
|
|
|
fn = file->value.str.val;
|
|
|
|
#if WIN32|WINNT
|
|
|
|
fp = fopen(file->value.str.val, "rb");
|
|
|
|
#else
|
1999-12-18 03:16:50 +08:00
|
|
|
fp = php_fopen_wrapper(file->value.str.val, "r", IGNORE_PATH|IGNORE_URL_WIN, &issock, &socketd, NULL);
|
1999-10-17 22:57:49 +08:00
|
|
|
#endif
|
|
|
|
if (!fp) {
|
1999-12-18 03:16:50 +08:00
|
|
|
php_strip_url_passwd(fn);
|
1999-12-18 04:55:31 +08:00
|
|
|
php_error(E_WARNING,
|
1999-10-17 22:57:49 +08:00
|
|
|
"ImageCreateFromPng: Unable to open %s for reading", fn);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
im = gdImageCreateFromPng (fp);
|
|
|
|
fflush(fp);
|
|
|
|
fclose(fp);
|
1999-12-18 03:51:39 +08:00
|
|
|
ind = zend_list_insert(im, GD_GLOBAL(le_gd));
|
1999-10-17 22:57:49 +08:00
|
|
|
RETURN_LONG(ind);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
1999-11-11 02:57:19 +08:00
|
|
|
/* {{{ proto int imagepng(int im [, string filename])
|
1999-11-25 06:04:49 +08:00
|
|
|
Output image to browser or file */
|
1999-12-18 05:50:07 +08:00
|
|
|
PHP_FUNCTION(imagepng)
|
|
|
|
{
|
1999-10-17 22:57:49 +08:00
|
|
|
pval *imgind, *file;
|
|
|
|
gdImagePtr im;
|
|
|
|
char *fn=NULL;
|
|
|
|
FILE *fp;
|
|
|
|
int argc;
|
|
|
|
int ind_type;
|
|
|
|
int output=1;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
argc = ARG_COUNT(ht);
|
1999-12-20 23:23:38 +08:00
|
|
|
if (argc < 1 || argc > 2 || zend_get_parameters(ht, argc, &imgind, &file) == FAILURE) {
|
1999-10-17 22:57:49 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
convert_to_long(imgind);
|
|
|
|
if (argc == 2) {
|
|
|
|
convert_to_string(file);
|
|
|
|
fn = file->value.str.val;
|
1999-12-18 03:16:50 +08:00
|
|
|
if (!fn || fn == empty_string || php_check_open_basedir(fn)) {
|
1999-12-18 04:55:31 +08:00
|
|
|
php_error(E_WARNING, "ImagePng: Invalid filename");
|
1999-10-17 22:57:49 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(imgind->value.lval, &ind_type);
|
1999-10-17 22:57:49 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-12-18 04:55:31 +08:00
|
|
|
php_error(E_WARNING, "ImagePng: unable to find image pointer");
|
1999-10-17 22:57:49 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
if (argc == 2) {
|
|
|
|
fp = fopen(fn, "wb");
|
|
|
|
if (!fp) {
|
1999-12-18 04:55:31 +08:00
|
|
|
php_error(E_WARNING, "ImagePng: unable to open %s for writing", fn);
|
1999-10-17 22:57:49 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
gdImagePng (im,fp);
|
|
|
|
fflush(fp);
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int b;
|
|
|
|
FILE *tmp;
|
|
|
|
char buf[4096];
|
|
|
|
tmp = tmpfile();
|
|
|
|
if (tmp == NULL) {
|
1999-12-18 04:55:31 +08:00
|
|
|
php_error(E_WARNING, "Unable to open temporary file");
|
1999-10-17 22:57:49 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
1999-12-18 03:51:39 +08:00
|
|
|
output = php_header();
|
1999-10-17 22:57:49 +08:00
|
|
|
if (output) {
|
|
|
|
gdImagePng (im, tmp);
|
|
|
|
fseek(tmp, 0, SEEK_SET);
|
|
|
|
#if APACHE && defined(CHARSET_EBCDIC)
|
|
|
|
/* This is a binary file already: avoid EBCDIC->ASCII conversion */
|
|
|
|
ap_bsetflag(php3_rqst->connection->client, B_EBCDIC2ASCII, 0);
|
|
|
|
#endif
|
|
|
|
while ((b = fread(buf, 1, sizeof(buf), tmp)) > 0) {
|
1999-12-18 03:16:50 +08:00
|
|
|
php_write(buf, b);
|
1999-10-17 22:57:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(tmp);
|
|
|
|
/* the temporary file is automatically deleted */
|
|
|
|
}
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
1999-11-25 05:43:54 +08:00
|
|
|
#endif /* HAVE_GD_PNG */
|
|
|
|
|
|
|
|
#ifdef HAVE_GD_GIF
|
1999-10-17 22:57:49 +08:00
|
|
|
|
1999-04-16 20:15:38 +08:00
|
|
|
/* {{{ proto int imagecreatefromgif(string filename)
|
1999-11-25 06:04:49 +08:00
|
|
|
Create a new image from file or URL */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagecreatefromgif )
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *file;
|
|
|
|
int ind;
|
|
|
|
gdImagePtr im;
|
|
|
|
char *fn=NULL;
|
|
|
|
FILE *fp;
|
|
|
|
int issock=0, socketd=0;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 1 || zend_get_parameters(ht, 1, &file) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_string(file);
|
|
|
|
|
|
|
|
fn = file->value.str.val;
|
|
|
|
|
|
|
|
#if WIN32|WINNT
|
|
|
|
fp = fopen(file->value.str.val, "rb");
|
|
|
|
#else
|
1999-12-18 03:16:50 +08:00
|
|
|
fp = php_fopen_wrapper(file->value.str.val, "r", IGNORE_PATH|IGNORE_URL_WIN, &issock, &socketd, NULL);
|
1999-04-16 20:15:38 +08:00
|
|
|
#endif
|
|
|
|
if (!fp) {
|
1999-12-18 03:16:50 +08:00
|
|
|
php_strip_url_passwd(fn);
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING,
|
1999-04-16 20:15:38 +08:00
|
|
|
"ImageCreateFromGif: Unable to open %s for reading", fn);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
im = gdImageCreateFromGif (fp);
|
|
|
|
|
|
|
|
fflush(fp);
|
|
|
|
fclose(fp);
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
ind = zend_list_insert(im, GD_GLOBAL(le_gd));
|
1999-04-16 20:15:38 +08:00
|
|
|
|
|
|
|
RETURN_LONG(ind);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
1999-11-11 02:57:19 +08:00
|
|
|
/* {{{ proto int imagegif(int im [, string filename])
|
1999-11-25 06:04:49 +08:00
|
|
|
Output image to browser or file */
|
1999-10-17 22:57:49 +08:00
|
|
|
PHP_FUNCTION(imagegif )
|
|
|
|
{
|
|
|
|
pval *imgind, *file;
|
|
|
|
gdImagePtr im;
|
|
|
|
char *fn=NULL;
|
|
|
|
FILE *fp;
|
|
|
|
int argc;
|
|
|
|
int ind_type;
|
|
|
|
int output=1;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
argc = ARG_COUNT(ht);
|
1999-12-20 23:23:38 +08:00
|
|
|
if (argc < 1 || argc > 2 || zend_get_parameters(ht, argc, &imgind, &file) == FAILURE) {
|
1999-10-17 22:57:49 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(imgind);
|
|
|
|
|
|
|
|
if (argc == 2) {
|
|
|
|
convert_to_string(file);
|
|
|
|
fn = file->value.str.val;
|
1999-12-18 03:16:50 +08:00
|
|
|
if (!fn || fn == empty_string || php_check_open_basedir(fn)) {
|
1999-10-17 22:57:49 +08:00
|
|
|
php_error(E_WARNING, "ImageGif: Invalid filename");
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(imgind->value.lval, &ind_type);
|
1999-10-17 22:57:49 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
|
|
|
php_error(E_WARNING, "ImageGif: unable to find image pointer");
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc == 2) {
|
|
|
|
fp = fopen(fn, "wb");
|
|
|
|
if (!fp) {
|
|
|
|
php_error(E_WARNING, "ImageGif: unable to open %s for writing", fn);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
gdImageGif (im,fp);
|
|
|
|
fflush(fp);
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int b;
|
|
|
|
FILE *tmp;
|
|
|
|
char buf[4096];
|
|
|
|
|
|
|
|
tmp = tmpfile();
|
|
|
|
if (tmp == NULL) {
|
|
|
|
php_error(E_WARNING, "Unable to open temporary file");
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
output = php_header();
|
1999-10-17 22:57:49 +08:00
|
|
|
|
|
|
|
if (output) {
|
|
|
|
gdImageGif (im, tmp);
|
|
|
|
fseek(tmp, 0, SEEK_SET);
|
|
|
|
#if APACHE && defined(CHARSET_EBCDIC)
|
1999-12-12 18:53:45 +08:00
|
|
|
{
|
|
|
|
SLS_FETCH();
|
|
|
|
/* This is a binary file already: avoid EBCDIC->ASCII conversion */
|
|
|
|
ap_bsetflag(((request_rec *) SG(server_context))->connection->client, B_EBCDIC2ASCII, 0);
|
|
|
|
}
|
1999-10-17 22:57:49 +08:00
|
|
|
#endif
|
|
|
|
while ((b = fread(buf, 1, sizeof(buf), tmp)) > 0) {
|
1999-12-18 03:16:50 +08:00
|
|
|
php_write(buf, b);
|
1999-10-17 22:57:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(tmp);
|
|
|
|
/* the temporary file is automatically deleted */
|
|
|
|
}
|
|
|
|
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
1999-11-25 05:43:54 +08:00
|
|
|
#endif /* HAVE_GD_GIF */
|
1999-10-17 22:57:49 +08:00
|
|
|
|
1999-04-16 20:15:38 +08:00
|
|
|
/* {{{ proto int imagedestroy(int im)
|
1999-11-25 06:04:49 +08:00
|
|
|
Destroy an image */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagedestroy)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *imgind;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 1 || zend_get_parameters(ht, 1, &imgind) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(imgind);
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
zend_list_delete(imgind->value.lval);
|
1999-04-16 20:15:38 +08:00
|
|
|
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagecolorallocate(int im, int red, int green, int blue)
|
1999-11-25 06:04:49 +08:00
|
|
|
Allocate a color for an image */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagecolorallocate)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *imgind, *red, *green, *blue;
|
|
|
|
int ind, ind_type;
|
|
|
|
int col;
|
|
|
|
int r, g, b;
|
|
|
|
gdImagePtr im;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 4 || zend_get_parameters(ht, 4, &imgind, &red,
|
1999-04-16 20:15:38 +08:00
|
|
|
&green, &blue) == FAILURE) {
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(imgind);
|
|
|
|
convert_to_long(red);
|
|
|
|
convert_to_long(green);
|
|
|
|
convert_to_long(blue);
|
|
|
|
|
|
|
|
ind = imgind->value.lval;
|
|
|
|
r = red->value.lval;
|
|
|
|
g = green->value.lval;
|
|
|
|
b = blue->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(ind, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "ImageColorAllocate: Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
col = gdImageColorAllocate(im, r, g, b);
|
|
|
|
RETURN_LONG(col);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* im, x, y */
|
|
|
|
/* {{{ proto int imagecolorat(int im, int x, int y)
|
1999-11-25 06:04:49 +08:00
|
|
|
Get the index of the color of a pixel */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagecolorat)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *imgind, *x, *y;
|
|
|
|
int ind, ind_type;
|
|
|
|
gdImagePtr im;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 3 || zend_get_parameters(ht, 3, &imgind, &x, &y) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(imgind);
|
|
|
|
convert_to_long(x);
|
|
|
|
convert_to_long(y);
|
|
|
|
|
|
|
|
ind = imgind->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(ind, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "ImageColorAt: Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
if (gdImageBoundsSafe(im, x->value.lval, y->value.lval)) {
|
|
|
|
#if HAVE_LIBGD13
|
|
|
|
RETURN_LONG(im->pixels[y->value.lval][x->value.lval]);
|
|
|
|
#else
|
|
|
|
RETURN_LONG(im->pixels[x->value.lval][y->value.lval]);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagecolorclosest(int im, int red, int green, int blue)
|
1999-11-25 06:04:49 +08:00
|
|
|
Get the index of the closest color to the specified color */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagecolorclosest)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *imgind, *red, *green, *blue;
|
|
|
|
int ind, ind_type;
|
|
|
|
int col;
|
|
|
|
int r, g, b;
|
|
|
|
gdImagePtr im;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 4 || zend_get_parameters(ht, 4, &imgind, &red,
|
1999-04-16 20:15:38 +08:00
|
|
|
&green, &blue) == FAILURE) {
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(imgind);
|
|
|
|
convert_to_long(red);
|
|
|
|
convert_to_long(green);
|
|
|
|
convert_to_long(blue);
|
|
|
|
|
|
|
|
ind = imgind->value.lval;
|
|
|
|
r = red->value.lval;
|
|
|
|
g = green->value.lval;
|
|
|
|
b = blue->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(ind, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "ImageColorClosest: Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
col = gdImageColorClosest(im, r, g, b);
|
|
|
|
RETURN_LONG(col);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagecolordeallocate(int im, int index)
|
1999-11-25 06:04:49 +08:00
|
|
|
De-allocate a color for an image */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagecolordeallocate)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *imgind, *index;
|
|
|
|
int ind, ind_type, col;
|
|
|
|
gdImagePtr im;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 2 || zend_get_parameters(ht, 2, &imgind, &index) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(imgind);
|
|
|
|
convert_to_long(index);
|
|
|
|
ind = imgind->value.lval;
|
|
|
|
col = index->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(ind, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "ImageColorDeallocate: Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (col >= 0 && col < gdImageColorsTotal(im)) {
|
|
|
|
gdImageColorDeallocate(im, col);
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
else {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Color index out of range");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagecolorresolve(int im, int red, int green, int blue)
|
1999-11-25 06:04:49 +08:00
|
|
|
Get the index of the specified color or its closest possible alternative */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagecolorresolve)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *imgind, *red, *green, *blue;
|
|
|
|
int ind, ind_type;
|
|
|
|
int col;
|
|
|
|
int r, g, b;
|
|
|
|
gdImagePtr im;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 4 || zend_get_parameters(ht, 4, &imgind, &red,
|
1999-04-16 20:15:38 +08:00
|
|
|
&green, &blue) == FAILURE) {
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(imgind);
|
|
|
|
convert_to_long(red);
|
|
|
|
convert_to_long(green);
|
|
|
|
convert_to_long(blue);
|
|
|
|
|
|
|
|
ind = imgind->value.lval;
|
|
|
|
r = red->value.lval;
|
|
|
|
g = green->value.lval;
|
|
|
|
b = blue->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(ind, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "ImageColorResolve: Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
col = gdImageColorResolve(im, r, g, b);
|
|
|
|
RETURN_LONG(col);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagecolorexact(int im, int red, int green, int blue)
|
1999-11-25 06:04:49 +08:00
|
|
|
Get the index of the specified color */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagecolorexact)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *imgind, *red, *green, *blue;
|
|
|
|
int ind, ind_type;
|
|
|
|
int col;
|
|
|
|
int r, g, b;
|
|
|
|
gdImagePtr im;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 4 || zend_get_parameters(ht, 4, &imgind, &red,
|
1999-04-16 20:15:38 +08:00
|
|
|
&green, &blue) == FAILURE) {
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(imgind);
|
|
|
|
convert_to_long(red);
|
|
|
|
convert_to_long(green);
|
|
|
|
convert_to_long(blue);
|
|
|
|
|
|
|
|
ind = imgind->value.lval;
|
|
|
|
r = red->value.lval;
|
|
|
|
g = green->value.lval;
|
|
|
|
b = blue->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(ind, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "ImageColorExact: Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
col = gdImageColorExact(im, r, g, b);
|
|
|
|
RETURN_LONG(col);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagecolorset(int im, int col, int red, int green, int blue)
|
1999-11-25 06:04:49 +08:00
|
|
|
Set the color for the specified palette index */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagecolorset)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *imgind, *color, *red, *green, *blue;
|
|
|
|
int ind, ind_type;
|
|
|
|
int col;
|
|
|
|
int r, g, b;
|
|
|
|
gdImagePtr im;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 5 || zend_get_parameters(ht, 5, &imgind, &color, &red, &green, &blue) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(imgind);
|
|
|
|
convert_to_long(color);
|
|
|
|
convert_to_long(red);
|
|
|
|
convert_to_long(green);
|
|
|
|
convert_to_long(blue);
|
|
|
|
|
|
|
|
ind = imgind->value.lval;
|
|
|
|
col = color->value.lval;
|
|
|
|
r = red->value.lval;
|
|
|
|
g = green->value.lval;
|
|
|
|
b = blue->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(ind, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "ImageColorSet: Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
if (col >= 0 && col < gdImageColorsTotal(im)) {
|
|
|
|
im->red[col] = r;
|
|
|
|
im->green[col] = g;
|
|
|
|
im->blue[col] = b;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto array imagecolorsforindex(int im, int col)
|
1999-11-25 06:04:49 +08:00
|
|
|
Get the colors for an index */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagecolorsforindex)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *imgind, *index;
|
|
|
|
int col, ind, ind_type;
|
|
|
|
gdImagePtr im;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 2 || zend_get_parameters(ht, 2, &imgind, &index) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(imgind);
|
|
|
|
convert_to_long(index);
|
|
|
|
ind = imgind->value.lval;
|
|
|
|
col = index->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(ind, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "ImageColorsForIndex: Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (col >= 0 && col < gdImageColorsTotal(im)) {
|
|
|
|
if (array_init(return_value) == FAILURE) {
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
add_assoc_long(return_value,"red",im->red[col]);
|
|
|
|
add_assoc_long(return_value,"green",im->green[col]);
|
|
|
|
add_assoc_long(return_value,"blue",im->blue[col]);
|
|
|
|
}
|
|
|
|
else {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Color index out of range");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagesetpixel(int im, int x, int y, int col)
|
1999-11-25 06:04:49 +08:00
|
|
|
Set a single pixel */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagesetpixel)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *imarg, *xarg, *yarg, *colarg;
|
|
|
|
gdImagePtr im;
|
|
|
|
int col, y, x;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
if (ARG_COUNT(ht) != 4 ||
|
1999-12-20 23:23:38 +08:00
|
|
|
zend_get_parameters(ht, 4, &imarg, &xarg, &yarg, &colarg) == FAILURE)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(imarg);
|
|
|
|
convert_to_long(xarg);
|
|
|
|
convert_to_long(yarg);
|
|
|
|
convert_to_long(colarg);
|
|
|
|
|
|
|
|
col = colarg->value.lval;
|
|
|
|
y = yarg->value.lval;
|
|
|
|
x = xarg->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(imarg->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdImageSetPixel(im,x,y,col);
|
|
|
|
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* im, x1, y1, x2, y2, col */
|
|
|
|
/* {{{ proto int imageline(int im, int x1, int y1, int x2, int y2, int col)
|
1999-11-25 06:04:49 +08:00
|
|
|
Draw a line */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imageline)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *IM, *COL, *X1, *Y1, *X2, *Y2;
|
|
|
|
gdImagePtr im;
|
|
|
|
int col, y2, x2, y1, x1;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
if (ARG_COUNT(ht) != 6 ||
|
1999-12-20 23:23:38 +08:00
|
|
|
zend_get_parameters(ht, 6, &IM, &X1, &Y1, &X2, &Y2, &COL) == FAILURE)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(IM);
|
|
|
|
convert_to_long(X1);
|
|
|
|
convert_to_long(Y1);
|
|
|
|
convert_to_long(X2);
|
|
|
|
convert_to_long(Y2);
|
|
|
|
convert_to_long(COL);
|
|
|
|
|
|
|
|
x1 = X1->value.lval;
|
|
|
|
y1 = Y1->value.lval;
|
|
|
|
x2 = X2->value.lval;
|
|
|
|
y2 = Y2->value.lval;
|
|
|
|
col = COL->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(IM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdImageLine(im,x1,y1,x2,y2,col);
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagedashedline(int im, int x1, int y1, int x2, int y2, int col)
|
1999-11-25 06:04:49 +08:00
|
|
|
Draw a dashed line */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagedashedline)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *IM, *COL, *X1, *Y1, *X2, *Y2;
|
|
|
|
gdImagePtr im;
|
|
|
|
int col, y2, x2, y1, x1;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 6 || zend_get_parameters(ht, 6, &IM, &X1, &Y1, &X2, &Y2, &COL) == FAILURE)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(IM);
|
|
|
|
convert_to_long(X1);
|
|
|
|
convert_to_long(Y1);
|
|
|
|
convert_to_long(X2);
|
|
|
|
convert_to_long(Y2);
|
|
|
|
convert_to_long(COL);
|
|
|
|
|
|
|
|
x1 = X1->value.lval;
|
|
|
|
y1 = Y1->value.lval;
|
|
|
|
x2 = X2->value.lval;
|
|
|
|
y2 = Y2->value.lval;
|
|
|
|
col = COL->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(IM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdImageDashedLine(im,x1,y1,x2,y2,col);
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* im, x1, y1, x2, y2, col */
|
|
|
|
/* {{{ proto int imagerectangle(int im, int x1, int y1, int x2, int y2, int col)
|
1999-11-25 06:04:49 +08:00
|
|
|
Draw a rectangle */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagerectangle)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *IM, *COL, *X1, *Y1, *X2, *Y2;
|
|
|
|
gdImagePtr im;
|
|
|
|
int col, y2, x2, y1, x1;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
if (ARG_COUNT(ht) != 6 ||
|
1999-12-20 23:23:38 +08:00
|
|
|
zend_get_parameters(ht, 6, &IM, &X1, &Y1, &X2, &Y2, &COL) == FAILURE)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(IM);
|
|
|
|
convert_to_long(X1);
|
|
|
|
convert_to_long(Y1);
|
|
|
|
convert_to_long(X2);
|
|
|
|
convert_to_long(Y2);
|
|
|
|
convert_to_long(COL);
|
|
|
|
|
|
|
|
x1 = X1->value.lval;
|
|
|
|
y1 = Y1->value.lval;
|
|
|
|
x2 = X2->value.lval;
|
|
|
|
y2 = Y2->value.lval;
|
|
|
|
col = COL->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(IM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdImageRectangle(im,x1,y1,x2,y2,col);
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* im, x1, y1, x2, y2, col */
|
|
|
|
/* {{{ proto int imagefilledrectangle(int im, int x1, int y1, int x2, int y2, int col)
|
1999-11-25 06:04:49 +08:00
|
|
|
Draw a filled rectangle */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagefilledrectangle)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *IM, *COL, *X1, *Y1, *X2, *Y2;
|
|
|
|
gdImagePtr im;
|
|
|
|
int col, y2, x2, y1, x1;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
if (ARG_COUNT(ht) != 6 ||
|
1999-12-20 23:23:38 +08:00
|
|
|
zend_get_parameters(ht, 6, &IM, &X1, &Y1, &X2, &Y2, &COL) == FAILURE)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(IM);
|
|
|
|
convert_to_long(X1);
|
|
|
|
convert_to_long(Y1);
|
|
|
|
convert_to_long(X2);
|
|
|
|
convert_to_long(Y2);
|
|
|
|
convert_to_long(COL);
|
|
|
|
|
|
|
|
x1 = X1->value.lval;
|
|
|
|
y1 = Y1->value.lval;
|
|
|
|
x2 = X2->value.lval;
|
|
|
|
y2 = Y2->value.lval;
|
|
|
|
col = COL->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(IM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdImageFilledRectangle(im,x1,y1,x2,y2,col);
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagearc(int im, int cx, int cy, int w, int h, int s, int e, int col)
|
1999-11-25 06:04:49 +08:00
|
|
|
Draw a partial ellipse */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagearc)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *COL, *E, *ST, *H, *W, *CY, *CX, *IM;
|
|
|
|
gdImagePtr im;
|
|
|
|
int col, e, st, h, w, cy, cx;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
if (ARG_COUNT(ht) != 8 ||
|
1999-12-20 23:23:38 +08:00
|
|
|
zend_get_parameters(ht, 8, &IM, &CX, &CY, &W, &H, &ST, &E, &COL) == FAILURE)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(IM);
|
|
|
|
convert_to_long(CX);
|
|
|
|
convert_to_long(CY);
|
|
|
|
convert_to_long(W);
|
|
|
|
convert_to_long(H);
|
|
|
|
convert_to_long(ST);
|
|
|
|
convert_to_long(E);
|
|
|
|
convert_to_long(COL);
|
|
|
|
|
|
|
|
col = COL->value.lval;
|
|
|
|
e = E->value.lval;
|
|
|
|
st = ST->value.lval;
|
|
|
|
h = H->value.lval;
|
|
|
|
w = W->value.lval;
|
|
|
|
cy = CY->value.lval;
|
|
|
|
cx = CX->value.lval;
|
|
|
|
|
|
|
|
if (e < 0) {
|
|
|
|
e %= 360;
|
|
|
|
}
|
|
|
|
if (st < 0) {
|
|
|
|
st %= 360;
|
|
|
|
}
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(IM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdImageArc(im,cx,cy,w,h,st,e,col);
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* im, x, y, border, col */
|
|
|
|
/* {{{ proto int imagefilltoborder(int im, int x, int y, int border, int col)
|
1999-11-25 06:04:49 +08:00
|
|
|
Flood fill to specific color */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagefilltoborder)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *IM, *X, *Y, *BORDER, *COL;
|
|
|
|
gdImagePtr im;
|
|
|
|
int col, border, y, x;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
if (ARG_COUNT(ht) != 5 ||
|
1999-12-20 23:23:38 +08:00
|
|
|
zend_get_parameters(ht, 5, &IM, &X, &Y, &BORDER, &COL) == FAILURE)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(IM);
|
|
|
|
convert_to_long(X);
|
|
|
|
convert_to_long(Y);
|
|
|
|
convert_to_long(BORDER);
|
|
|
|
convert_to_long(COL);
|
|
|
|
|
|
|
|
col = COL->value.lval;
|
|
|
|
border = BORDER->value.lval;
|
|
|
|
y = Y->value.lval;
|
|
|
|
x = X->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(IM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdImageFillToBorder(im,x,y,border,col);
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* im, x, y, col */
|
|
|
|
/* {{{ proto int imagefill(int im, int x, int y, int col)
|
1999-11-25 06:04:49 +08:00
|
|
|
Flood fill */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagefill)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *IM, *X, *Y, *COL;
|
|
|
|
gdImagePtr im;
|
|
|
|
int col, y, x;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
if (ARG_COUNT(ht) != 4 ||
|
1999-12-20 23:23:38 +08:00
|
|
|
zend_get_parameters(ht, 4, &IM, &X, &Y, &COL) == FAILURE)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(IM);
|
|
|
|
convert_to_long(X);
|
|
|
|
convert_to_long(Y);
|
|
|
|
convert_to_long(COL);
|
|
|
|
|
|
|
|
col = COL->value.lval;
|
|
|
|
y = Y->value.lval;
|
|
|
|
x = X->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(IM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdImageFill(im,x,y,col);
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagecolorstotal(int im)
|
1999-11-25 06:04:49 +08:00
|
|
|
Find out the number of colors in an image's palette */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagecolorstotal)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *IM;
|
|
|
|
gdImagePtr im;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 1 || zend_get_parameters(ht, 1, &IM) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
convert_to_long(IM);
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(IM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
RETURN_LONG(gdImageColorsTotal(im));
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* im, col */
|
|
|
|
/* {{{ proto int imagecolortransparent(int im [, int col])
|
1999-11-25 06:04:49 +08:00
|
|
|
Define a color as transparent */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imagecolortransparent)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *IM, *COL = NULL;
|
|
|
|
gdImagePtr im;
|
|
|
|
int col;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
switch(ARG_COUNT(ht)) {
|
|
|
|
case 1:
|
1999-12-20 23:23:38 +08:00
|
|
|
if (zend_get_parameters(ht, 1, &IM) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
1999-12-20 23:23:38 +08:00
|
|
|
if (zend_get_parameters(ht, 2, &IM, &COL) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
convert_to_long(COL);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
convert_to_long(IM);
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(IM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (COL != NULL) {
|
|
|
|
col = COL->value.lval;
|
|
|
|
gdImageColorTransparent(im,col);
|
|
|
|
}
|
|
|
|
col = gdImageGetTransparent(im);
|
|
|
|
RETURN_LONG(col);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* im, interlace */
|
|
|
|
/* {{{ proto int imageinterlace(int im [, int interlace])
|
1999-11-25 06:04:49 +08:00
|
|
|
Enable or disable interlace */
|
1999-07-24 00:03:18 +08:00
|
|
|
PHP_FUNCTION(imageinterlace)
|
|
|
|
{
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *IM, *INT = NULL;
|
|
|
|
gdImagePtr im;
|
|
|
|
int interlace;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
switch(ARG_COUNT(ht)) {
|
|
|
|
case 1:
|
1999-12-20 23:23:38 +08:00
|
|
|
if (zend_get_parameters(ht, 1, &IM) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
1999-12-20 23:23:38 +08:00
|
|
|
if (zend_get_parameters(ht, 2, &IM, &INT) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
convert_to_long(INT);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
convert_to_long(IM);
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(IM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (INT != NULL) {
|
|
|
|
interlace = INT->value.lval;
|
|
|
|
gdImageInterlace(im,interlace);
|
|
|
|
}
|
|
|
|
interlace = gdImageGetInterlaced(im);
|
|
|
|
RETURN_LONG(interlace);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* arg = 0 normal polygon
|
|
|
|
arg = 1 filled polygon */
|
|
|
|
/* im, points, num_points, col */
|
1999-12-18 05:50:07 +08:00
|
|
|
static void php_imagepolygon(INTERNAL_FUNCTION_PARAMETERS, int filled) {
|
1999-07-24 00:03:18 +08:00
|
|
|
pval *IM, *POINTS, *NPOINTS, *COL, **var;
|
1999-04-16 20:15:38 +08:00
|
|
|
gdImagePtr im;
|
|
|
|
gdPoint points[PolyMaxPoints];
|
|
|
|
int npoints, col, nelem, i;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
if (ARG_COUNT(ht) != 4 ||
|
1999-12-20 23:23:38 +08:00
|
|
|
zend_get_parameters(ht, 4, &IM, &POINTS, &NPOINTS, &COL) == FAILURE)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(IM);
|
|
|
|
convert_to_long(NPOINTS);
|
|
|
|
convert_to_long(COL);
|
|
|
|
|
|
|
|
npoints = NPOINTS->value.lval;
|
|
|
|
col = COL->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(IM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (POINTS->type != IS_ARRAY) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "2nd argument to imagepolygon not an array");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** we shouldn't need this check, should we? **
|
|
|
|
|
|
|
|
if (!ParameterPassedByReference(ht, 2)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "2nd argument to imagepolygon not passed by reference");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
1999-08-03 03:17:14 +08:00
|
|
|
nelem = zend_hash_num_elements(POINTS->value.ht);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (nelem < 6) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING,
|
1999-04-16 20:15:38 +08:00
|
|
|
"you must have at least 3 points in your array");
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nelem < npoints * 2) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING,
|
1999-04-16 20:15:38 +08:00
|
|
|
"trying to use %d points in array with only %d points",
|
|
|
|
npoints, nelem/2);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (npoints > PolyMaxPoints) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "maximum %d points", PolyMaxPoints);
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < npoints; i++) {
|
1999-08-03 03:17:14 +08:00
|
|
|
if (zend_hash_index_find(POINTS->value.ht, (i * 2), (void **)&var) == SUCCESS) {
|
1999-07-24 00:03:18 +08:00
|
|
|
SEPARATE_ZVAL(var);
|
|
|
|
convert_to_long(*var);
|
|
|
|
points[i].x = (*var)->value.lval;
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
1999-08-03 03:17:14 +08:00
|
|
|
if (zend_hash_index_find(POINTS->value.ht, (i * 2) + 1, (void **)&var) == SUCCESS) {
|
1999-07-24 00:03:18 +08:00
|
|
|
SEPARATE_ZVAL(var);
|
|
|
|
convert_to_long(*var);
|
|
|
|
points[i].y = (*var)->value.lval;
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (filled) {
|
|
|
|
gdImageFilledPolygon(im, points, npoints, col);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
gdImagePolygon(im, points, npoints, col);
|
|
|
|
}
|
|
|
|
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ proto int imagepolygon(int im, array point, int num_points, int col)
|
1999-11-25 06:04:49 +08:00
|
|
|
Draw a polygon */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(imagepolygon)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
1999-12-18 05:50:07 +08:00
|
|
|
php_imagepolygon(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagefilledpolygon(int im, array point, int num_points, int col)
|
1999-11-25 06:04:49 +08:00
|
|
|
Draw a filled polygon */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(imagefilledpolygon)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
1999-12-18 05:50:07 +08:00
|
|
|
php_imagepolygon(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
1999-12-18 05:50:07 +08:00
|
|
|
static gdFontPtr php_find_gd_font(int size)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
gdFontPtr font;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
switch (size) {
|
|
|
|
case 1:
|
|
|
|
font = gdFontTiny;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
font = gdFontSmall;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
font = gdFontMediumBold;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
font = gdFontLarge;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
font = gdFontGiant;
|
|
|
|
break;
|
|
|
|
default:
|
1999-12-18 03:51:39 +08:00
|
|
|
font = zend_list_find(size - 5, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!font || ind_type != GD_GLOBAL(le_gd_font)) {
|
|
|
|
if (size < 1) {
|
|
|
|
font = gdFontTiny;
|
|
|
|
} else {
|
|
|
|
font = gdFontGiant;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return font;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* arg = 0 ImageFontWidth
|
|
|
|
* arg = 1 ImageFontHeight
|
|
|
|
*/
|
1999-12-18 05:50:07 +08:00
|
|
|
static void php_imagefontsize(INTERNAL_FUNCTION_PARAMETERS, int arg)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
pval *SIZE;
|
|
|
|
gdFontPtr font;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 1 || zend_get_parameters(ht, 1, &SIZE) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
convert_to_long(SIZE);
|
1999-12-18 05:50:07 +08:00
|
|
|
font = php_find_gd_font(SIZE->value.lval);
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_LONG(arg ? font->h : font->w);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ proto int imagefontwidth(int font)
|
1999-11-25 06:04:49 +08:00
|
|
|
Get font width */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(imagefontwidth)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
1999-12-18 05:50:07 +08:00
|
|
|
php_imagefontsize(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagefontheight(int font)
|
2000-01-25 04:25:57 +08:00
|
|
|
Get font height */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(imagefontheight)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
1999-12-18 05:50:07 +08:00
|
|
|
php_imagefontsize(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* workaround for a bug in gd 1.2 */
|
1999-12-18 05:50:07 +08:00
|
|
|
void php_gdimagecharup(gdImagePtr im, gdFontPtr f, int x, int y, int c,
|
1999-04-16 20:15:38 +08:00
|
|
|
int color)
|
|
|
|
{
|
|
|
|
int cx, cy, px, py, fline;
|
|
|
|
cx = 0;
|
|
|
|
cy = 0;
|
|
|
|
if ((c < f->offset) || (c >= (f->offset + f->nchars))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
fline = (c - f->offset) * f->h * f->w;
|
|
|
|
for (py = y; (py > (y - f->w)); py--) {
|
|
|
|
for (px = x; (px < (x + f->h)); px++) {
|
|
|
|
if (f->data[fline + cy * f->w + cx]) {
|
|
|
|
gdImageSetPixel(im, px, py, color);
|
|
|
|
}
|
|
|
|
cy++;
|
|
|
|
}
|
|
|
|
cy = 0;
|
|
|
|
cx++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* arg = 0 ImageChar
|
|
|
|
* arg = 1 ImageCharUp
|
|
|
|
* arg = 2 ImageString
|
|
|
|
* arg = 3 ImageStringUp
|
|
|
|
*/
|
1999-12-18 05:50:07 +08:00
|
|
|
static void php_imagechar(INTERNAL_FUNCTION_PARAMETERS, int mode) {
|
1999-04-16 20:15:38 +08:00
|
|
|
pval *IM, *SIZE, *X, *Y, *C, *COL;
|
|
|
|
gdImagePtr im;
|
|
|
|
int ch = 0, col, x, y, size, i, l = 0;
|
2000-02-09 06:21:43 +08:00
|
|
|
unsigned char *str = NULL;
|
1999-04-16 20:15:38 +08:00
|
|
|
int ind_type;
|
|
|
|
gdFontPtr font;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
if (ARG_COUNT(ht) != 6 ||
|
1999-12-20 23:23:38 +08:00
|
|
|
zend_get_parameters(ht, 6, &IM, &SIZE, &X, &Y, &C, &COL) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(IM);
|
|
|
|
convert_to_long(SIZE);
|
|
|
|
convert_to_long(X);
|
|
|
|
convert_to_long(Y);
|
|
|
|
convert_to_string(C);
|
|
|
|
convert_to_long(COL);
|
|
|
|
|
|
|
|
col = COL->value.lval;
|
|
|
|
|
|
|
|
if (mode < 2) {
|
|
|
|
ch = (int)((unsigned char)*(C->value.str.val));
|
|
|
|
} else {
|
2000-02-09 06:21:43 +08:00
|
|
|
str = (unsigned char *) estrndup(C->value.str.val,C->value.str.len);
|
|
|
|
l = strlen(str);
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
y = Y->value.lval;
|
|
|
|
x = X->value.lval;
|
|
|
|
size = SIZE->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(IM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
2000-02-09 06:21:43 +08:00
|
|
|
if (str) {
|
|
|
|
efree(str);
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
1999-12-18 05:50:07 +08:00
|
|
|
font = php_find_gd_font(size);
|
1999-04-16 20:15:38 +08:00
|
|
|
|
|
|
|
switch(mode) {
|
|
|
|
case 0:
|
|
|
|
gdImageChar(im, font, x, y, ch, col);
|
|
|
|
break;
|
|
|
|
case 1:
|
1999-12-18 05:50:07 +08:00
|
|
|
php_gdimagecharup(im, font, x, y, ch, col);
|
1999-04-16 20:15:38 +08:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
for (i = 0; (i < l); i++) {
|
2000-02-09 06:21:43 +08:00
|
|
|
gdImageChar(im, font, x, y, (int)((unsigned char)str[i]),
|
1999-04-16 20:15:38 +08:00
|
|
|
col);
|
|
|
|
x += font->w;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3: {
|
|
|
|
for (i = 0; (i < l); i++) {
|
2000-02-09 06:21:43 +08:00
|
|
|
/* php_gdimagecharup(im, font, x, y, (int)str[i], col); */
|
|
|
|
gdImageCharUp(im, font, x, y, (int)str[i], col);
|
1999-04-16 20:15:38 +08:00
|
|
|
y -= font->w;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2000-02-09 06:21:43 +08:00
|
|
|
if (str) {
|
|
|
|
efree(str);
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* {{{ proto int imagechar(int im, int font, int x, int y, string c, int col)
|
1999-11-25 06:04:49 +08:00
|
|
|
Draw a character */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(imagechar) {
|
1999-12-18 05:50:07 +08:00
|
|
|
php_imagechar(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagecharup(int im, int font, int x, int y, string c, int col)
|
1999-11-25 06:04:49 +08:00
|
|
|
Draw a character rotated 90 degrees counter-clockwise */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(imagecharup) {
|
1999-12-18 05:50:07 +08:00
|
|
|
php_imagechar(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagestring(int im, int font, int x, int y, string str, int col)
|
1999-11-25 06:04:49 +08:00
|
|
|
Draw a string horizontally */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(imagestring) {
|
1999-12-18 05:50:07 +08:00
|
|
|
php_imagechar(INTERNAL_FUNCTION_PARAM_PASSTHRU, 2);
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagestringup(int im, int font, int x, int y, string str, int col)
|
1999-11-25 06:04:49 +08:00
|
|
|
Draw a string vertically - rotated 90 degrees counter-clockwise */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(imagestringup) {
|
1999-12-18 05:50:07 +08:00
|
|
|
php_imagechar(INTERNAL_FUNCTION_PARAM_PASSTHRU, 3);
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagecopy(int dst_im, int src_im, int dstX, int dstY, int srcX, int srcY, int srcW, int srcH)
|
1999-11-25 06:04:49 +08:00
|
|
|
Copy part of an image */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(imagecopy)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
pval *SIM, *DIM, *SX, *SY, *SW, *SH, *DX, *DY;
|
|
|
|
gdImagePtr im_dst;
|
|
|
|
gdImagePtr im_src;
|
|
|
|
int srcH, srcW, srcY, srcX, dstY, dstX;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
if (ARG_COUNT(ht) != 8 ||
|
1999-12-20 23:23:38 +08:00
|
|
|
zend_get_parameters(ht, 8, &DIM, &SIM, &DX, &DY, &SX, &SY, &SW, &SH)
|
1999-04-16 20:15:38 +08:00
|
|
|
== FAILURE) {
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(SIM);
|
|
|
|
convert_to_long(DIM);
|
|
|
|
convert_to_long(SX);
|
|
|
|
convert_to_long(SY);
|
|
|
|
convert_to_long(SW);
|
|
|
|
convert_to_long(SH);
|
|
|
|
convert_to_long(DX);
|
|
|
|
convert_to_long(DY);
|
|
|
|
|
|
|
|
srcX = SX->value.lval;
|
|
|
|
srcY = SY->value.lval;
|
|
|
|
srcH = SH->value.lval;
|
|
|
|
srcW = SW->value.lval;
|
|
|
|
dstX = DX->value.lval;
|
|
|
|
dstY = DY->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im_src = zend_list_find(SIM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im_src || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im_dst = zend_list_find(DIM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im_dst || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdImageCopy(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH);
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagecopyresized(int dst_im, int src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH);
|
1999-11-25 06:04:49 +08:00
|
|
|
Copy and resize part of an image */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(imagecopyresized)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
pval *SIM, *DIM, *SX, *SY, *SW, *SH, *DX, *DY, *DW, *DH;
|
|
|
|
gdImagePtr im_dst;
|
|
|
|
gdImagePtr im_src;
|
|
|
|
int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
if (ARG_COUNT(ht) != 10 ||
|
1999-12-20 23:23:38 +08:00
|
|
|
zend_get_parameters(ht, 10, &DIM, &SIM, &DX, &DY, &SX, &SY, &DW, &DH,
|
1999-04-16 20:15:38 +08:00
|
|
|
&SW, &SH) == FAILURE) {
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(SIM);
|
|
|
|
convert_to_long(DIM);
|
|
|
|
convert_to_long(SX);
|
|
|
|
convert_to_long(SY);
|
|
|
|
convert_to_long(SW);
|
|
|
|
convert_to_long(SH);
|
|
|
|
convert_to_long(DX);
|
|
|
|
convert_to_long(DY);
|
|
|
|
convert_to_long(DW);
|
|
|
|
convert_to_long(DH);
|
|
|
|
|
|
|
|
srcX = SX->value.lval;
|
|
|
|
srcY = SY->value.lval;
|
|
|
|
srcH = SH->value.lval;
|
|
|
|
srcW = SW->value.lval;
|
|
|
|
dstX = DX->value.lval;
|
|
|
|
dstY = DY->value.lval;
|
|
|
|
dstH = DH->value.lval;
|
|
|
|
dstW = DW->value.lval;
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im_src = zend_list_find(SIM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im_src || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im_dst = zend_list_find(DIM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im_dst || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdImageCopyResized(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH,
|
|
|
|
srcW, srcH);
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagesx(int im)
|
1999-11-25 06:04:49 +08:00
|
|
|
Get image width */
|
1999-07-28 03:44:46 +08:00
|
|
|
PHP_FUNCTION(imagesx)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
pval *IM;
|
|
|
|
gdImagePtr im;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 1 || zend_get_parameters(ht, 1, &IM) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(IM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
RETURN_LONG(gdImageSX(im));
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto int imagesy(int im)
|
2000-01-25 04:25:57 +08:00
|
|
|
Get image height */
|
1999-07-28 03:44:46 +08:00
|
|
|
PHP_FUNCTION(imagesy)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
pval *IM;
|
|
|
|
gdImagePtr im;
|
|
|
|
int ind_type;
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 1 || zend_get_parameters(ht, 1, &IM) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(IM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
RETURN_LONG(gdImageSY(im));
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
1999-07-23 23:18:37 +08:00
|
|
|
#ifdef ENABLE_GD_TTF
|
1999-04-16 20:15:38 +08:00
|
|
|
|
|
|
|
#define TTFTEXT_DRAW 0
|
|
|
|
#define TTFTEXT_BBOX 1
|
|
|
|
|
|
|
|
/* {{{ proto array imagettfbbox(int size, int angle, string font_file, string text)
|
1999-11-25 06:04:49 +08:00
|
|
|
Give the bounding box of a text using TrueType fonts */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(imagettfbbox)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
1999-12-18 05:50:07 +08:00
|
|
|
php_imagettftext_common(INTERNAL_FUNCTION_PARAM_PASSTHRU, TTFTEXT_BBOX);
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto array imagettftext(int im, int size, int angle, int x, int y, int col, string font_file, string text)
|
1999-11-25 06:04:49 +08:00
|
|
|
Write text to the image using a TrueType font */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(imagettftext)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
1999-12-18 05:50:07 +08:00
|
|
|
php_imagettftext_common(INTERNAL_FUNCTION_PARAM_PASSTHRU, TTFTEXT_DRAW);
|
1999-04-16 20:15:38 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
static
|
1999-12-18 05:50:07 +08:00
|
|
|
void php_imagettftext_common(INTERNAL_FUNCTION_PARAMETERS, int mode)
|
1999-04-16 20:15:38 +08:00
|
|
|
{
|
|
|
|
pval *IM, *PTSIZE, *ANGLE, *X, *Y, *C, *FONTNAME, *COL;
|
|
|
|
gdImagePtr im;
|
|
|
|
int col, x, y, l=0, i;
|
|
|
|
int brect[8];
|
|
|
|
double ptsize, angle;
|
2000-02-09 06:21:43 +08:00
|
|
|
unsigned char *str = NULL, *fontname = NULL;
|
1999-04-16 20:15:38 +08:00
|
|
|
int ind_type;
|
|
|
|
char *error;
|
|
|
|
|
|
|
|
GD_TLS_VARS;
|
|
|
|
|
|
|
|
if (mode == TTFTEXT_BBOX) {
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 4 || zend_get_parameters(ht, 4, &PTSIZE, &ANGLE, &FONTNAME, &C) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
} else {
|
1999-12-20 23:23:38 +08:00
|
|
|
if (ARG_COUNT(ht) != 8 || zend_get_parameters(ht, 8, &IM, &PTSIZE, &ANGLE, &X, &Y, &COL, &FONTNAME, &C) == FAILURE) {
|
1999-04-16 20:15:38 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_double(PTSIZE);
|
|
|
|
convert_to_double(ANGLE);
|
|
|
|
convert_to_string(FONTNAME);
|
|
|
|
convert_to_string(C);
|
|
|
|
if (mode == TTFTEXT_BBOX) {
|
|
|
|
im = NULL;
|
|
|
|
col = x = y = -1;
|
|
|
|
} else {
|
|
|
|
convert_to_long(X);
|
|
|
|
convert_to_long(Y);
|
|
|
|
convert_to_long(IM);
|
|
|
|
convert_to_long(COL);
|
|
|
|
col = COL->value.lval;
|
|
|
|
y = Y->value.lval;
|
|
|
|
x = X->value.lval;
|
1999-12-18 03:51:39 +08:00
|
|
|
im = zend_list_find(IM->value.lval, &ind_type);
|
1999-04-16 20:15:38 +08:00
|
|
|
if (!im || ind_type != GD_GLOBAL(le_gd)) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, "Unable to find image pointer");
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ptsize = PTSIZE->value.dval;
|
|
|
|
angle = ANGLE->value.dval * (M_PI/180); /* convert to radians */
|
|
|
|
|
2000-02-09 06:21:43 +08:00
|
|
|
str = (unsigned char *) C->value.str.val;
|
|
|
|
l = strlen(str);
|
1999-04-16 20:15:38 +08:00
|
|
|
fontname = (unsigned char *) FONTNAME->value.str.val;
|
|
|
|
|
2000-02-09 06:21:43 +08:00
|
|
|
error = gdttf(im, brect, col, fontname, ptsize, angle, x, y, str);
|
1999-04-16 20:15:38 +08:00
|
|
|
|
|
|
|
if (error) {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING, error);
|
1999-04-16 20:15:38 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (array_init(return_value) == FAILURE) {
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* return array with the text's bounding box */
|
|
|
|
for (i = 0; i < 8; i++) {
|
|
|
|
add_next_index_long(return_value, brect[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
*/
|