标签:
1.改变图片的大小函数
<?php $src_file="image.gif"; $src_img = imagecreatefromgif($src_file);//需要载入的文件 $src_w=imagesx($src_img); $src_h=imagesy($src_img); $dst_img= ImageCreateTrueColor(10,10);;//新建文件,黑色背景 imagecopyresampled($dst_img,$src_img,0,0,0,0,10,10,$src_w,$src_h); imagegif($dst_img,"./image1.gif"); ?>
标签:
原文地址:http://www.cnblogs.com/haigui-zx/p/5570129.html