php打造缩略图图片

WBOY
发布: 2016-06-13 10:41:11
原创
792 人浏览过

php制作缩略图图片

<?phpif (! isset ( $_POST ["submit"] )) {	echo "<?xml version=\"1.0\" encoding=\"UTF-8\"";} else {	if (isset ( $_FILES ["file"] ) || $_POST ["file"] != "") {		function resizeimage($file, $rate = .5) {			$size = getimagesize ( $file );			switch ($size [2]) {				case 1 :					$img = imagecreatefromgif ( $file );					break;				case 2 :					$img = imagecreatefromjpeg ( $file );					break;				case 3 :					$img = imagecreatefrompng ( $file );					break;			}			$srcw = imagesx ( $img );			$srch = imagesy ( $img );			$detw = floor ( $srcw * $rate );			$deth = floor ( $srch * $rate );			$im = imagecreatetruecolor ( $detw, $deth );			$black = imagecolorallocate ( $im, 255, 255, 255 );			imagefilledrectangle ( $im, 0, 0, $detw, $deth, $black );			imagecopyresized ( $im, $img, 0, 0, 0, 0, $detw, $deth, $srcw, $srch );			header ( 'Content-type:image/png' );			imagepng ( $im );			imagedestroy ( $im );			imagedestroy ( $img );		}		resizeimage ( $_FILES ["file"] ["tmp_name"] );	}}?><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Insert title here</title><style type="text/css">td {	margin: 0;}</style><script type="text/javascript">function submit(){	obj=document.form1.submit();	return obj;}</script>
登录后复制
">
相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板