php_gd.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Rasmus Lerdorf <rasmus@php.net> |
  16. | Stig Bakken <ssb@php.net> |
  17. +----------------------------------------------------------------------+
  18. */
  19. #ifndef PHP_GD_H
  20. #define PHP_GD_H
  21. #if HAVE_LIBFREETYPE
  22. # ifndef ENABLE_GD_TTF
  23. # define ENABLE_GD_TTF
  24. # endif
  25. #endif
  26. #if defined(HAVE_LIBGD) || defined(HAVE_GD_BUNDLED)
  27. /* open_basedir and safe_mode checks */
  28. #define PHP_GD_CHECK_OPEN_BASEDIR(filename, errormsg) \
  29. if (!filename || php_check_open_basedir(filename)) { \
  30. php_error_docref(NULL, E_WARNING, errormsg); \
  31. RETURN_FALSE; \
  32. }
  33. #define PHP_GDIMG_TYPE_GIF 1
  34. #define PHP_GDIMG_TYPE_PNG 2
  35. #define PHP_GDIMG_TYPE_JPG 3
  36. #define PHP_GDIMG_TYPE_WBM 4
  37. #define PHP_GDIMG_TYPE_XBM 5
  38. #define PHP_GDIMG_TYPE_XPM 6
  39. #define PHP_GDIMG_CONVERT_WBM 7
  40. #define PHP_GDIMG_TYPE_GD 8
  41. #define PHP_GDIMG_TYPE_GD2 9
  42. #define PHP_GDIMG_TYPE_GD2PART 10
  43. #define PHP_GDIMG_TYPE_WEBP 11
  44. #define PHP_GDIMG_TYPE_BMP 12
  45. #define PHP_IMG_GIF 1
  46. #define PHP_IMG_JPG 2
  47. #define PHP_IMG_JPEG 2
  48. #define PHP_IMG_PNG 4
  49. #define PHP_IMG_WBMP 8
  50. #define PHP_IMG_XPM 16
  51. #define PHP_IMG_WEBP 32
  52. #define PHP_IMG_BMP 64
  53. #ifdef PHP_WIN32
  54. # define PHP_GD_API __declspec(dllexport)
  55. #elif defined(__GNUC__) && __GNUC__ >= 4
  56. # define PHP_GD_API __attribute__ ((visibility("default")))
  57. #else
  58. # define PHP_GD_API
  59. #endif
  60. PHPAPI extern const char php_sig_gif[3];
  61. PHPAPI extern const char php_sig_jpg[3];
  62. PHPAPI extern const char php_sig_png[8];
  63. PHPAPI extern const char php_sig_bmp[2];
  64. PHPAPI extern const char php_sig_riff[4];
  65. PHPAPI extern const char php_sig_webp[4];
  66. extern zend_module_entry gd_module_entry;
  67. #define phpext_gd_ptr &gd_module_entry
  68. #include "php_version.h"
  69. #define PHP_GD_VERSION PHP_VERSION
  70. /* gd.c functions */
  71. PHP_MINFO_FUNCTION(gd);
  72. PHP_MINIT_FUNCTION(gd);
  73. #if HAVE_GD_FREETYPE && HAVE_LIBFREETYPE
  74. PHP_RSHUTDOWN_FUNCTION(gd);
  75. #endif
  76. PHP_FUNCTION(gd_info);
  77. PHP_FUNCTION(imagearc);
  78. PHP_FUNCTION(imageellipse);
  79. PHP_FUNCTION(imagechar);
  80. PHP_FUNCTION(imagecharup);
  81. PHP_FUNCTION(imageistruecolor);
  82. PHP_FUNCTION(imagecolorallocate);
  83. PHP_FUNCTION(imagepalettecopy);
  84. PHP_FUNCTION(imagecolorat);
  85. PHP_FUNCTION(imagecolorclosest);
  86. PHP_FUNCTION(imagecolorclosesthwb);
  87. PHP_FUNCTION(imagecolordeallocate);
  88. PHP_FUNCTION(imagecolorresolve);
  89. PHP_FUNCTION(imagecolorexact);
  90. PHP_FUNCTION(imagecolorset);
  91. PHP_FUNCTION(imagecolorstotal);
  92. PHP_FUNCTION(imagecolorsforindex);
  93. PHP_FUNCTION(imagecolortransparent);
  94. PHP_FUNCTION(imagecopy);
  95. PHP_FUNCTION(imagecopymerge);
  96. PHP_FUNCTION(imagecopyresized);
  97. PHP_FUNCTION(imagetypes);
  98. PHP_FUNCTION(imagecreate);
  99. PHP_FUNCTION(imageftbbox);
  100. PHP_FUNCTION(imagefttext);
  101. PHP_FUNCTION(imagecreatetruecolor);
  102. PHP_FUNCTION(imagetruecolortopalette);
  103. PHP_FUNCTION(imagepalettetotruecolor);
  104. PHP_FUNCTION(imagesetthickness);
  105. PHP_FUNCTION(imagefilledellipse);
  106. PHP_FUNCTION(imagefilledarc);
  107. PHP_FUNCTION(imagealphablending);
  108. PHP_FUNCTION(imagesavealpha);
  109. PHP_FUNCTION(imagecolorallocatealpha);
  110. PHP_FUNCTION(imagecolorresolvealpha);
  111. PHP_FUNCTION(imagecolorclosestalpha);
  112. PHP_FUNCTION(imagecolorexactalpha);
  113. PHP_FUNCTION(imagecopyresampled);
  114. #ifdef PHP_WIN32
  115. PHP_FUNCTION(imagegrabwindow);
  116. PHP_FUNCTION(imagegrabscreen);
  117. #endif
  118. PHP_FUNCTION(imagerotate);
  119. PHP_FUNCTION(imageflip);
  120. PHP_FUNCTION(imageantialias);
  121. PHP_FUNCTION(imagecrop);
  122. PHP_FUNCTION(imagecropauto);
  123. PHP_FUNCTION(imagescale);
  124. PHP_FUNCTION(imageaffine);
  125. PHP_FUNCTION(imageaffinematrixget);
  126. PHP_FUNCTION(imageaffinematrixconcat);
  127. PHP_FUNCTION(imagesetinterpolation);
  128. PHP_FUNCTION(imagesetthickness);
  129. PHP_FUNCTION(imagecopymergegray);
  130. PHP_FUNCTION(imagesetbrush);
  131. PHP_FUNCTION(imagesettile);
  132. PHP_FUNCTION(imagesetstyle);
  133. PHP_FUNCTION(imagecreatefromstring);
  134. PHP_FUNCTION(imagecreatefromgif);
  135. PHP_FUNCTION(imagecreatefromjpeg);
  136. PHP_FUNCTION(imagecreatefromxbm);
  137. PHP_FUNCTION(imagecreatefromwebp);
  138. PHP_FUNCTION(imagecreatefrompng);
  139. PHP_FUNCTION(imagecreatefromwbmp);
  140. PHP_FUNCTION(imagecreatefromgd);
  141. PHP_FUNCTION(imagecreatefromgd2);
  142. PHP_FUNCTION(imagecreatefromgd2part);
  143. #if defined(HAVE_GD_BMP)
  144. PHP_FUNCTION(imagecreatefrombmp);
  145. #endif
  146. #if defined(HAVE_GD_XPM)
  147. PHP_FUNCTION(imagecreatefromxpm);
  148. #endif
  149. PHP_FUNCTION(imagegammacorrect);
  150. PHP_FUNCTION(imagedestroy);
  151. PHP_FUNCTION(imagefill);
  152. PHP_FUNCTION(imagefilledpolygon);
  153. PHP_FUNCTION(imagefilledrectangle);
  154. PHP_FUNCTION(imagefilltoborder);
  155. PHP_FUNCTION(imagefontwidth);
  156. PHP_FUNCTION(imagefontheight);
  157. PHP_FUNCTION(imagegif );
  158. PHP_FUNCTION(imagejpeg );
  159. PHP_FUNCTION(imagepng);
  160. PHP_FUNCTION(imagewebp);
  161. PHP_FUNCTION(imagewbmp);
  162. PHP_FUNCTION(imagegd);
  163. PHP_FUNCTION(imagegd2);
  164. #if defined(HAVE_GD_BMP)
  165. PHP_FUNCTION(imagebmp);
  166. #endif
  167. PHP_FUNCTION(imageinterlace);
  168. PHP_FUNCTION(imageline);
  169. PHP_FUNCTION(imageloadfont);
  170. PHP_FUNCTION(imagepolygon);
  171. PHP_FUNCTION(imageopenpolygon);
  172. PHP_FUNCTION(imagerectangle);
  173. PHP_FUNCTION(imagesetpixel);
  174. PHP_FUNCTION(imagestring);
  175. PHP_FUNCTION(imagestringup);
  176. PHP_FUNCTION(imagesx);
  177. PHP_FUNCTION(imagesy);
  178. PHP_FUNCTION(imagesetclip);
  179. PHP_FUNCTION(imagegetclip);
  180. PHP_FUNCTION(imagedashedline);
  181. PHP_FUNCTION(imagettfbbox);
  182. PHP_FUNCTION(imagettftext);
  183. PHP_FUNCTION(jpeg2wbmp);
  184. PHP_FUNCTION(png2wbmp);
  185. PHP_FUNCTION(image2wbmp);
  186. PHP_FUNCTION(imagecolormatch);
  187. PHP_FUNCTION(imagelayereffect);
  188. PHP_FUNCTION(imagexbm);
  189. PHP_FUNCTION(imagefilter);
  190. PHP_FUNCTION(imageconvolution);
  191. PHP_FUNCTION(imageresolution);
  192. PHP_GD_API int phpi_get_le_gd(void);
  193. #else
  194. #define phpext_gd_ptr NULL
  195. #endif
  196. #endif /* PHP_GD_H */