摘要: 先开启php.ini 中extension=php_gd2.dll类库,重启服务。如下是根据已有图片文件,创建指定大小图片文件。static function ImageMakeThumb($srcFile, $dstFile, $dstW, $dstH) {try {list ( $width, $height, $type, $attr ) = getimagesize ( $srcFile );echo $width, $height, $type, $attr;//1 = GIF,2 = JPG,3 = PNG ,6 = BMPswitch ($type) {case 1 :$im = 阅读全文
posted @ 2013-01-14 10:00 小站记忆 阅读(216) 评论(0) 推荐(0)