php上传多张图片时,选择图片后即可预览的问题
发布:smiling 来源: PHP粉丝网 添加日期:2022-07-17 19:49:10 浏览: 评论:0
这几天一直在解决一个问题,上传图片时选择成功后就能预览。
需求:在点击上传图标的时候会在前面的input框中显示出文件名,然后点击后面的查看按钮就可以预览选择的这张图片了,要求不能刷新页面
1.一开始的时候打算用ajax上传,后来发现多张图片一同上传的时候会出现问题,ajax上传图片的原理是当你选中一张图片的时候会使用js在这个type为file的input的框外面包上一个form表单然后通过ajaxSubmit自动提交到php文件,之后通过php文件进行上传,最后返回一个上传到服务器的图片路径,点击查看的时候就可以获取到这个图片,实际上这个时候图片已经上传到服务器了。但这个需求是多张图片,这么做会出现很大的问题。
2.之后在网上查到了使用js实时预览本地选中的图片,这个和ajax上传的不同就是,在选择完图片文件之后并不会上传到服务器,而是直接调取本机图片的路径预览。下面就是用这种方法实现最终效果的例子。
方法:
- <input type="file" name="photo_file[]" class="ata_pt" οnchange="previewImage(this)"/>
- <input type="hidden" class="imageurl" />
首先需要一个上传文件的input的框
然后在下面加一个获取它的本地图片路径的隐藏形式的input的框
- //图片上传预览 IE是用了滤镜。
- function previewImage(file)
- {
- if (file.files && file.files[0])
- {
- var reader = new FileReader();
- reader.onload = function(evt){
- $(file).next().val(evt.target.result);
- }
- reader.readAsDataURL(file.files[0]);
- }
- else //兼容IE
- {
- var sFilter='filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale,src="';
- file.select();
- var src = document.selection.createRange().text;
- //p.innerHTML = '<img id=imghead>';
- //var img = document.getElementById('imghead');
- //img.filters.item('DXImageTransform.Microsoft.AlphaImageLoader').src = src;
- $(this).next().val(src);
- //var rect = clacImgZoomParam(MAXWIDTH, MAXHEIGHT, img.offsetWidth, img.offsetHeight);
- //status =('rect:'+rect.top+','+rect.left+','+rect.width+','+rect.height);
- //p.innerHTML = "<p id=phead style='width:"+rect.width+"px;height:"+rect.height+"px;margin-top:"+rect.top+"px;"+sFilter+src+"\"'></p>";
- }
- }
- function clacImgZoomParam( maxWidth, maxHeight, width, height ){
- var param = {top:0, left:0, width:width, height:height};
- if( width>maxWidth || height>maxHeight )
- {
- rateWidth = width / maxWidth;
- rateHeight = height / maxHeight;
- if( rateWidth > rateHeight )
- {
- param.width = maxWidth;
- param.height = Math.round(height / rateWidth);
- }else
- {
- param.width = Math.round(width / rateHeight);
- param.height = maxHeight;
- }
- }
- param.left = Math.round((maxWidth - param.width) / 2);
- param.top = Math.round((maxHeight - param.height) / 2);
- return param;
- }
可以看到在选择图片的时候调用了previewImage()方法,使用这个方法获取了本机图片的地址传入到class为imageurl的input框中。
之后是创建一个查看按钮,我是在
<input type="hidden" class="imageurl" />
下面直接加了一个按钮,当点击这个按钮的时候获取$(this).prev().val(),然后传给想要显示图片的p中的img里,这样图片就显示出来了
<p><img src=" " id="preview"></p>
经过测试这个方法可以满足firefox,chrome,ie10以上,基本上已经够用了吧。
压了几天得问题没想到就这么解决了,效率不高,积累经验!积累经验!积累经验!
Tags: php上传多张图片 php图片预览
- 上一篇:手把手教你用php实现图片上传功能
- 下一篇:最后一页
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)