php图片缩放实现方法
php基础练习--图片缩放: 代码如下: /**
* image zoom. */ function imageZoom($filename,$w,$h) { /* Arguments meaning */ /* $filename: the source of the name */ /* $w: you want get the image's width */ /* $h: you want get the imgage's height */ $arr = getimagesize($filename); $src_w = $arr[0]; $src_h = $arr[1]; $src_t = $arr[2]; /*1 = GIF,2 = JPG,3 = PNG,4 = SWF,5 = PSD,6 = BMP,7 = TIFF(intel byte order), = TIFF(motorola byte order),9 = JPC,10 = JP2,11 = JPX,12 = JB2,13 = SWC, = IFF,15 = WBMP,16 = XBM*/ $src_m = $arr['mime']; $src_img = imagecreatefromjpeg($filename); if (($w / $src_w) >($h / $src_h)) { imagecopyresampled($dst_img,$src_img,$dst_w,$dst_h,$src_w,$src_h); header("content-type:{$src_m}"); switch ($src_t) { $dst_filename = "s_".$filename; imagedestroy($dst_img); 核心:<1>注意缩放比例如何得到,虽然这样得到的图片可能会与预想的有点差别,但是最起码保证了缩放比例。 <2>类型的控制。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |