php图片上传存储源码并且可以预览

前端之家收集整理的这篇文章主要介绍了php图片上传存储源码并且可以预览前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="85319" class="copybut" id="copybut85319" onclick="doCopy('code85319')"> 代码如下:

<div class="codebody" id="code85319"> @H_403_2@<?PHP @H_4032@header("content-Type: text/html; charset=gb2312"); @H403_2@$uptypes=array('image/jpg',//上传文件类型列表 @H_4032@'image/jpeg',@H4032@'image/png',@H4032@'image/pjpeg',@H4032@'image/gif',@H4032@'image/bmp',@H4032@'application/x-shockwave-flash',@H4032@'image/x-png',@H4032@'application/msword',@H403_2@'audio/x-ms-wma',@H_403_2@'audio/mp3',@H_4032@'application/vnd.rn-realmedia',@H4032@'application/x-zip-compressed',@H4032@'application/octet-stream'); @H403_2@$max_file_size=10000000; //上传文件大小限制,单位BYTE @H_403_2@$path_parts=pathinfo($_SERVER['PHPSELF']); //取得当前路径 @H403_2@$destination_folder="up/"; //上传文件路径 @H_4032@$watermark=0; //是否附加水印(1为加水印,0为不加水印); @H403_2@$watertype=1; //水印类型(1为文字,2为图片) @H_4032@$waterposition=2; //水印位置(1为左下角,2为右下角,3为左上角,4为右上角,5为居中); @H4032@$waterstring="www.yinao.tk"; //水印字符串 @H403_2@$waterimg="xplore.gif"; //水印图片 @H_403_2@$imgpreview=1; //是否生成预览图(1为生成,0为不生成); @H_403_2@$imgpreviewsize=1/1; //缩略图比例 @H_4032@?> @H4032@<html xmlns="undefined"> @H4032@ @H403_2@<a href="/tag/tupian/" target="_blank" class="keywords">图片</a><a href="/tag/shangchuan/" target="_blank" class="keywords">上传</a>储存 @H_4032@ @H4032@ @H403_2@<Meta http-equiv="Content-Type" content="text/html; charset=gb2312"> @H_403_2@ @H_4032@<style type="text/css"> @H4032@body,td{font-family:tahoma,verdana,arial;font-size:11px;line-height:15px;background-color:white;color:#666666; @H4032@h3{font-size:12px;} @H4032@a:link{color:#0066CC;} @H4032@a:hover{color:#FF6600;} @H4032@a:visited{color:#003366;} @H4032@a:active{color:#9DCC00;} @H4032@a{TEXT-DECORATION:none} @H403_2@td.irows{height:20px;background:url("index.PHP?i=dots") repeat-x bottom} @H_4032@ @H4032@ @H403_2@<script type="text/javascript">function oCopy(obj){obj.select();js=obj.createTextRange();js.execCommand("Copy");};function sendtof(url){window.clipboardData.setData('Text',url);alert('复制地址成功,粘贴给你好友一起分享。');};function selectformat(){var on=document.getElementById('fmt').checked;document.getElementById('site').style.display=on?'none':'';document.getElementById('sited').style.display=!on?'none':'';};var flag=false;function DrawImage(ImgD){var image=new Image();image.src=ImgD.src;if(image.width>0&&image.height>0){flag=true;if(image.width/image.height>=120/80){if(image.width>120){ImgD.width=120;ImgD.height=(image.height120)/image.width;}else {ImgD.width=image.width;ImgD.height=image.height;};ImgD.alt=image.width+"×"+image.height;}else {if(image.height>80){ImgD.height=80;ImgD.width=(image.width80)/image.height;}else {ImgD.width=image.width;ImgD.height=image.height;};ImgD.alt=image.width+"×"+image.height;}};};function FileChange(Value){flag=false;document.all.uploadimage.width=10;document.all.uploadimage.height=10;document.all.uploadimage.alt="";document.all.uploadimage.src=Value;}; @H4032@<body bgcolor="#FFFFFF"> @H4032@
@H4032@<form enctype="multipart/form-data" method="post" name="upform"> @H4032@ @H4032@<tr> @H403_2@<td colspan="2"><p align="center">最大文件限制1M </td> @H_4032@</tr> @H4032@<tr> @H4032@<td width="10%">
</td> @H
4032@<td width="71%">
@H4032@<input style="width:208;border:1 solid #9a9999; font-size:9pt; background-color:#ffffff; height:18" size="17" name=upfile type=file @H4032@onchange="javascript:FileChange(this.value);"> @H403_2@<input type="submit" value="上传" style="width:60;border:1 solid #9a9999; font-size:9pt; background-color:#ffffff; height:18" size="17"></td> @H_4032@</tr> @H4032@</table> @H403_2@允许上传文件类型为:jpg|jpeg|gif|bmp|png|swf|mp3|wma|zip|rar|doc @H_403_2@<?PHP @H_403_2@if ($_SERVER['REQUESTMETHOD'] == 'POST') @H4032@{ @H403_2@if (!is_uploaded_file($_FILES["upfile"][tmpname])) @H403_2@//是否存在文件 @H_4032@{ @H403_2@echo "文件不存在!"; @H_4032@exit; @H4032@} @H403_2@$file = $FILES["upfile"]; @H403_2@if($max_filesize < $file["size"]) @H403_2@//检查文件大小 @H_4032@{ @H403_2@echo "文件太大!"; @H_4032@exit; @H4032@} @H403_2@if(!inarray($file["type"],$uptypes)) @H403_2@//检查文件类型 @H_4032@{ @H403_2@echo "不能上传此类型文件"; @H_4032@exit; @H4032@} @H403_2@if(!file_exists($destinationfolder)) @H403_2@mkdir($destinationfolder); @H403_2@$filename=$file["tmpname"]; @H403_2@$imagesize = getimagesize($filename); @H4032@$pinfo=pathinfo($file["name"]); @H4032@$ftype=$pinfo[extension]; @H403_2@$destination = $destinationfolder.time().".".$ftype; @H403_2@if (fileexists($destination) && $overwrite != true) @H4032@{ @H403_2@echo "同名文件已经存在了!"; @H_4032@exit; @H4032@} @H403_2@if(!move_uploadedfile ($filename,$destination)) @H4032@{ @H403_2@echo "移动文件出错!"; @H_4032@exit; @H4032@} @H4032@$pinfo=pathinfo($destination); @H4032@$fname=$pinfo[basename]; @H403_2@echo " 成功上传,鼠标移动到地址栏自动复制
<table width=\"348\" cellspacing=\"0\" cellpadding=\"5\" border=\"0\" class=\"table_decoration\" align=\"center\"><tr><td><input type=\"checkBox\" id=\"fmt\" onclick=\"select_format()\"/>图片UBB代码
<div id=\"site\"><table border=\"0\"><tr><td valign=\"top\">文件地址:</td><td><input type=\"text\" onclick=\"sendtof(this.value)\" onmouSEOver=\"oCopy(this)\" style=font-size=9pt;color:blue size=\"44\" value=\"http://".$_SERVER['SERVER_NAME'].$path_parts["dirname"]."/".$destination_folder.$fname."\"/&gt; @H_403_2@</td></tr></table>
<div id=\"sited\" style=\"display:none\"><table border=\"0\"><tr><td valign=\"top\">文件地址:</td><td><input type=\"text\" onclick=\"sendtof(this.value)\" onmouSEOver=\"oCopy(this)\" style=font-size=9pt;color:blue size=\"44\" value=\"[img]http://".$_SERVER['SERVER_NAME'].$path_parts["dirname"]."/".$destination_folder.$fname."[/img]\"/&gt;</td></tr></table></td></tr></table>"; @H_403_2@echo " 宽度:".$imagesize[0]; @H403_2@echo " 长度:".$imagesize[1]; @H4032@if($watermark==1) @H4032@{ @H4032@$iinfo=getimagesize($destination,$iinfo); @H403_2@$nimage=imagecreatetruecolor($image_size[0],$imagesize[1]); @H4032@$white=imagecolorallocate($nimage,255,255); @H4032@$black=imagecolorallocate($nimage,0); @H4032@$red=imagecolorallocate($nimage,0); @H4032@imagefill($nimage,$white); @H4032@switch ($iinfo[2]) @H4032@{ @H4032@case 1: @H4032@$simage =imagecreatefromgif($destination); @H4032@break; @H4032@case 2: @H4032@$simage =imagecreatefromjpeg($destination); @H4032@break; @H4032@case 3: @H4032@$simage =imagecreatefrompng($destination); @H4032@break; @H4032@case 6: @H4032@$simage =imagecreatefromwbmp($destination); @H4032@break; @H4032@default: @H403_2@die("不能上传此类型文件!"); @H_4032@exit; @H4032@} @H403_2@imagecopy($nimage,$simage,$image_size[0],$imagesize[1]); @H403_2@imagefilledrectangle($nimage,1,$image_size[1]-15,80,$imagesize[1],$white); @H4032@switch($watertype) @H4032@{ @H4032@case 1: //加水印字符串 @H4032@imagestring($nimage,2,3,$waterstring,$black); @H4032@break; @H403_2@case 2: //加水印图片 @H_4032@$simage1 =imagecreatefromgif("xplore.gif"); @H4032@imagecopy($nimage,$simage1,85,15); @H4032@imagedestroy($simage1); @H4032@break; @H4032@} @H4032@switch ($iinfo[2]) @H4032@{ @H4032@case 1: @H4032@//imagegif($nimage,$destination); @H4032@imagejpeg($nimage,$destination); @H4032@break; @H4032@case 2: @H4032@imagejpeg($nimage,$destination); @H4032@break; @H4032@case 3: @H4032@imagepng($nimage,$destination); @H4032@break; @H4032@case 6: @H4032@imagewbmp($nimage,$destination); @H4032@//imagejpeg($nimage,$destination); @H4032@break; @H4032@} @H403_2@//覆盖原上传文件 @H_4032@imagedestroy($nimage); @H4032@imagedestroy($simage); @H4032@} @H4032@if($imgpreview==1) @H4032@{ @H403_2@echo "
图片预览:
"; @H_403_2@echo "<a href=\"".$destination."\" target='_blank'><img src=\"".$destination."\" width=".($image_size[0]$imgpreviewsize)." height=".($image_size[1]$imgpreviewsize);
echo " alt=\"图片预览:\r文件名:".$fname."\r上传时间:".date('m/d/Y h:i')."\" border='0'>"; @H_4032@} @H4032@} @H4032@?> @H4032@ @H4032@ @H4032@ @H403_2@

猜你在找的PHP相关文章