文件名称:PHP的GD库函数大全
文件大小:5KB
文件格式:TXT
更新时间:2012-02-29 03:34:25
PHP的 GD库 函数大全 PHP的GD库函数大全
GetImageSize 作用:取得图片的大小[即长与宽] 用法:array GetImageSize(string filename, array [imageinfo]); ImageArc 作用:画弧线 用法:int ImageArc(int im, int cx, int cy, int w, int h, int s, int e, int col); ImageChar 作用:写出横向字符 用法:int ImageChar(int im, int font, int x, int y, string c, int col); ImageCharUp 作用:写出竖式字符 用法:int ImageCharup(int im, int font, int x, int y, string c, int col); ImageColorAllocate 作用:匹配颜色 用法:int ImageColorAllocate(int im, int red, int green, int blue); ImageColorTransparent 作用:指定透明背景色 用法:int ImageColorTransparent(int im, int [col]); ImageCopyResized 作用:复制新图并调整大小 用法:int ImageCopyResized(int dst_im, int src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH);