summaryrefslogtreecommitdiff
path: root/ext/gd/gdt1.c
diff options
context:
space:
mode:
authorEgon Schmid <eschmid@php.net>2000-02-22 15:48:43 +0000
committerEgon Schmid <eschmid@php.net>2000-02-22 15:48:43 +0000
commite06c2021c96438d41dc5b408c06c46850e7af92e (patch)
tree1ba5f5d7d902bb99e20a851ddb34dee56cd916d8 /ext/gd/gdt1.c
parent3b74bbe999131a86f2c4e947cde1aa1101385b6f (diff)
downloadphp-git-e06c2021c96438d41dc5b408c06c46850e7af92e.tar.gz
More protos.
Diffstat (limited to 'ext/gd/gdt1.c')
-rw-r--r--ext/gd/gdt1.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/gd/gdt1.c b/ext/gd/gdt1.c
index e8f6e9accb..f95dd263ea 100644
--- a/ext/gd/gdt1.c
+++ b/ext/gd/gdt1.c
@@ -31,7 +31,7 @@ void php_free_ps_enc(char **enc)
}
/* {{{ proto int imagepsloadfont(string pathname)
-Load a new font from specified file */
+ Load a new font from specified file */
PHP_FUNCTION(imagepsloadfont)
{
pval *file;
@@ -131,7 +131,7 @@ PHP_FUNCTION(imagepscopyfont)
/* }}} */
/* {{{ proto bool imagepsfreefont(int font_index)
-Free memory used by a font */
+ Free memory used by a font */
PHP_FUNCTION(imagepsfreefont)
{
pval *fnt;
@@ -156,7 +156,7 @@ PHP_FUNCTION(imagepsfreefont)
/* }}} */
/* {{{ 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;
@@ -195,7 +195,7 @@ PHP_FUNCTION(imagepsencodefont)
/* }}} */
/* {{{ 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;
@@ -223,7 +223,7 @@ PHP_FUNCTION(imagepsextendfont)
/* }}} */
/* {{{ proto bool imagepsslantfont(int font_index, double slant)
-Slant a font */
+ Slant a font */
PHP_FUNCTION(imagepsslantfont)
{
pval *fnt, *slt;
@@ -250,7 +250,7 @@ PHP_FUNCTION(imagepsslantfont)
/* }}} */
/* {{{ 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;
@@ -418,8 +418,8 @@ PHP_FUNCTION(imagepstext)
}
/* }}} */
-/* {{{ 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;