}
/* {{{ proto int imagepsloadfont(string pathname)
-Load a new font from specified file */
+ Load a new font from specified file */
PHP_FUNCTION(imagepsloadfont)
{
pval *file;
/* }}} */
/* {{{ proto bool imagepsfreefont(int font_index)
-Free memory used by a font */
+ Free memory used by a font */
PHP_FUNCTION(imagepsfreefont)
{
pval *fnt;
/* }}} */
/* {{{ proto bool imagepsencodefont(int font_index, string filename)
-To change a fonts character encoding vector */
+ To change a fonts character encoding vector */
PHP_FUNCTION(imagepsencodefont)
{
pval *fnt, *enc;
/* }}} */
/* {{{ proto bool imagepsextendfont(int font_index, double extend)
-Extend or or condense (if extend < 1) a font */
+ Extend or or condense (if extend < 1) a font */
PHP_FUNCTION(imagepsextendfont)
{
pval *fnt, *ext;
/* }}} */
/* {{{ proto bool imagepsslantfont(int font_index, double slant)
-Slant a font */
+ Slant a font */
PHP_FUNCTION(imagepsslantfont)
{
pval *fnt, *slt;
/* }}} */
/* {{{ proto array imagepstext(int image, string text, int font, int size, int xcoord, int ycoord [, int space, int tightness, double angle, int antialias])
-Rasterize a string over an image */
+ Rasterize a string over an image */
PHP_FUNCTION(imagepstext)
{
pval *img, *str, *fnt, *sz, *fg, *bg, *sp, *px, *py, *aas, *wd, *ang;
}
/* }}} */
-/* {{{ proto array imagepsbbox(string text, int font, int size[, int space, int tightness, int angle])
-Return the bounding box needed by a string if rasterized */
+/* {{{ proto array imagepsbbox(string text, int font, int size [, int space, int tightness, int angle])
+ Return the bounding box needed by a string if rasterized */
PHP_FUNCTION(imagepsbbox)
{
pval *str, *fnt, *sz, *sp, *wd, *ang;