js无刷新上传图片,服务端有生成缩略图,剪切图片,iphone图片旋转判断功能
html:
<form action="<{:AppLink('circle/uploadimg')}>" id="imageform" method="post" enctype="multipart/form-data">
<input name="photoimg" type="file" id="xwzx_f" style="display: none;" />
</form>
js:
<script src = "__TMPL__statics/js/jquery-1.7.1.min.js?v=20161123" ></script>
<script src="__TMPL__statics/js/layer/layer.js?v=20161123"></script>
<script src = "__TMPL__statics/js/jquery.form.js?v=1"></script>
$("#xwzx_f").change(function(){
$(".loading-gif").show();
var img_name=this["files"][0]["name"];
var temparr=img_name.split('.');
var ext=temparr.pop().toLowerCase();
temparr=null;
if(ext!="jpg"&&ext!="png"&&ext!="gif"&&ext!="bmp"&&ext!="jpeg"&&ext!="jepg"){
layer.msg('上传的格式不正确');
$(".loading-gif").hide();
return false;
}
var src = window.URL.createObjectURL(this["files"][0]);//如果预览可用此代码
$('#imageform').ajaxSubmit({
beforeSend: function() {
$(".loading-gif").html( '0%');
},
uploadProgress: function(event, position, total, percentComplete) {
$(".loading-gif").html(percentComplete + '%');
},
success: function() {
$(".loading-gif").hide();
},
complete: function(xhr) {
var result=JSON.parse(xhr.responseText);
if(result.status=="success"){
var htmlstr="";
htmlstr='<li class="l_up_img"><div class="f-img-box">';
htmlstr+='<a href="javascript:;"><img src="__ROOT__/attachs/qz/'+result.imgpath+'"></a>';
htmlstr+='<input class="up_img" type="hidden" value="'+result.imgpath+'" bmw="'+result.bm_w+'" bmh="'+result.bm_h+'"/>';
htmlstr+='</div></li>';
$(".f-s-img").find("li").last().before(htmlstr);
}else{
layer.msg(result.msg);
}
}
});
php代码(携带生成大中小缩略图,剪切功能,iphone图片旋转,iphone旋转需要php.ini开启php_exif)
function imgturn($src, $direction = 1,$ext) {
switch ($ext) {
case 'gif' :
$img = imagecreatefromgif ( $src );
break;
case 'jepg':
case 'jpg' :
case 'jpeg' :
$img = imagecreatefromjpeg ( $src );
break;
case 'png' :
$img = imagecreatefrompng ( $src );
break;
default :
die ( '图片格式错误!' );
break;
}
$width = imagesx ( $img );
$height = imagesy ( $img );
$img2 = imagecreatetruecolor ( $height, $width );
// 顺时针旋转90度
if ($direction == 1) {
for($x = 0; $x < $width; $x ++) {
for($y = 0; $y < $height; $y ++) {
imagecopy ( $img2, $img, $height - 1 - $y, $x, $x, $y, 1, 1 );
}
}
} else if ($direction == 2) {
// 逆时针旋转90度
for($x = 0; $x < $height; $x ++) {
for($y = 0; $y < $width; $y ++) {
imagecopy ( $img2, $img, $x, $y, $width - 1 - $y, $x, 1, 1 );
}
}
}
switch ($ext) {
case 'jepg':
case 'jpg' :
case "jpeg" :
imagejpeg ( $img2, $src, 100 );
break;
case "gif" :
imagegif ( $img2, $src, 100 );
break;
case "png" :
imagepng ( $img2, $src, 100 );
break;
default :
die ( '图片格式错误!' );
break;
}
imagedestroy ( $img );
imagedestroy ( $img2 );
}
/**
* 上传图片
*/
public function uploadimg(){
if(isset($_POST) and $_SERVER['REQUEST_METHOD'] == "POST"){
$name = $_FILES['photoimg']['name'];
$size = $_FILES['photoimg']['size'];
try {
$filetemp=date('Ymd',time());
$path = BASE_PATH."/attachs/qz/{$filetemp}/";//需要上传的路径
if(!is_dir($path)){
mkdir($path,0777,true);
}
} catch (Exception $e) {
die(json_encode(array('status'=>'error','msg'=>'文件路径创建失败')));
}
if(empty($name)){
die(json_encode(array('status'=>'error','msg'=>'请选择要上传的图片')));
}
if($size>(1024*1024*10)){
die(json_encode(array('status'=>'error','msg'=>'图片大小不能超过10M')));
}
$extend = pathinfo($name);
$ext = strtolower($extend["extension"]);
if(!in_array($ext, array('jpg','png','gif','bmp','jpeg','jepg'))){
die(json_encode(array('status'=>'error','msg'=>'图片格式不正确'.$ext)));
}
$image_name = time().rand(100,999).".".$ext;
$tmp = $_FILES['photoimg']['tmp_name'];
/**
*iphone判断图片方向,是否需要旋转图片
*/
if(strpos($_SERVER['HTTP_USER_AGENT'], 'iPhone')&&in_array($ext, array('jpg','png','gif','jpeg','jepg'))){
$exif =exif_read_data($tmp);
switch ($exif['Orientation']){
case 6:
self::imgturn($tmp,1,$ext);
break;
case 3:
self::imgturn($tmp,1,$ext);
self::imgturn($tmp,1,$ext);
break;
case 8:
self::imgturn($tmp,2,$ext);
break;
}
}
self::imagecropper($tmp, $path,$image_name, 'sm_', 150, 150);//小图,如果图片尺寸不合适就裁剪
self::imagecropper($tmp,$path,$image_name,'mm_',256,256);//中图,如果图片尺寸不合适就裁剪
if($result=move_uploaded_file($tmp, $path.$image_name)){
/**
* 修改,大图
*/
$imagesize=getimagesize($path.$image_name);//高,宽,格式,高宽字符串
if($imagesize[1]>700){//宽度大于720
self::thumb($path,$image_name,'bm_',700,700*$imagesize[1]/$imagesize[0]);//高度等比
}else{
self::thumb($path,$image_name,'bm_',$imagesize[0],$imagesize[1]);
}
/**
* 修改end
*/
/**
*生成缩略图
*小图 92*92
*中图 256*256
*大图 暂时不生成但预留
*/
/* self::thumb( $path,$image_name,'sm_',92,92);
self::thumb( $path,$image_name,'mm_',256,256);
$imagesize=getimagesize($path.$image_name);//高,宽,格式,高宽字符串
if($imagesize[1]>720){//宽度大于720
self::thumb( $path,$image_name,'bm_',720,720*$imagesize[1]/$imagesize[0]);//高度等比
}else{
self::thumb( $path,$image_name,'bm_',$imagesize[0],$imagesize[1]);
} */
unlink($path.$image_name);
$filetemp=date('Ymd',time());
$r_data=array(
//'oror'=>$exif['Orientation'],
'status'=>'success',
'msg'=>'上传成功',
'imgpath'=>$filetemp.'/sm_'.$image_name,
'bm_w'=>$imagesize[0], //大图宽
'bm_h'=>$imagesize[1] //大图高
);
/* $myfile = fopen("C:/Users/sss/Desktop/ss/testfile.txt", "w+");
fwrite($myfile, json_encode($r_data));
fclose($myfile); */
echo json_encode($r_data);
}else{
echo json_encode(array('status'=>'error','msg'=>'上传失败','oror'=>$result));
}
}else{
die(json_encode(array('status'=>'error','msg'=>'请求方式不正确')));
}
}
/**
* 创建图片缩略图
* @param string $directroy 上传至目录,
* @param string $doUpFile 上传的文件名,
* @param string $dscChar 前缀,小图 sm,中图 mm ,大图 bm
* @param number $width
* @param number $height
* @return string|boolean
*/
function thumb( $Directroy,$doUpFile,$dscChar = 'sm_',$width = 92, $height = 92){
if ($doUpFile != '') {
$srcFile = $doUpFile;
$dscFile = $Directroy . $dscChar . $srcFile;
$data = getimagesize($Directroy . $srcFile); // 文件格式,其值 1 为 GIF 格式、 2 为 JPEG/JPG 格式、3 为 PNG 格式。
switch ($data[2]) {
case 1:
$im = @imagecreatefromgif($Directroy . $srcFile);
break;
case 2:
$im = @imagecreatefromjpeg($Directroy . $srcFile);
break;
case 3:
$im = @imagecreatefrompng($Directroy . $srcFile);
break;
}
$srcW = imagesx($im);
$srcH = imagesy($im);
$ni = imagecreatetruecolor($width, $height);
//imagecopyresized($ni, $im, 0, 0, 0, 0, $width, $height, $srcW, $srcH);
imagecopyresampled($ni, $im, 0, 0, 0, 0, $width, $height, $srcW, $srcH);
$cr = imagejpeg($ni, $dscFile);
chmod($dscFile, 0777);
if ($cr) {
return $dscFile;
} else {
return false;
}
}
}
/**
*
* @param unknown $source_path 源图路径
* $Directroy,
* $doUpFile,
* $dscChar = 'sm_',
* @param unknown $target_width 目标图宽度
* @param unknown $target_height 目标图高度
* @return boolean
*
*/
function imagecropper($source_path, $Directroy,$doUpFile, $dscChar = 'sm_', $target_width=92, $target_height=92){
$srcFile = $doUpFile;
$dscFile = $Directroy . $dscChar . $srcFile;
$source_info = getimagesize($source_path);
$source_width = $source_info[0];
$source_height = $source_info[1];
$source_mime = $source_info['mime'];
$source_ratio = $source_height / $source_width;
$target_ratio = $target_height / $target_width;
if ($source_ratio > $target_ratio){ // 源图过高
$cropped_width = $source_width;
$cropped_height = $source_width * $target_ratio;
$source_x = 0;
$source_y = ($source_height - $cropped_height) / 2;
} elseif ($source_ratio < $target_ratio){ // 源图过宽
$cropped_width = $source_height / $target_ratio;
$cropped_height = $source_height;
$source_x = ($source_width - $cropped_width) / 2;
$source_y = 0;
}else{ // 源图适中
$cropped_width = $source_width;
$cropped_height = $source_height;
$source_x = 0;
$source_y = 0;
}
switch ($source_mime){
case 'image/gif':
$source_image = imagecreatefromgif($source_path);
break;
case 'image/jpeg':
$source_image = imagecreatefromjpeg($source_path);
break;
case 'image/png':
$source_image = imagecreatefrompng($source_path);
break;
default:
return false;
break;
}
$target_image = imagecreatetruecolor($target_width, $target_height);
$cropped_image = imagecreatetruecolor($cropped_width, $cropped_height);
// 裁剪
imagecopy($cropped_image, $source_image, 0, 0, $source_x, $source_y, $cropped_width, $cropped_height);
// 缩放
imagecopyresampled($target_image, $cropped_image, 0, 0, 0, 0, $target_width, $target_height, $cropped_width, $cropped_height);
header('Content-Type: image/jpeg');
imagejpeg($target_image,$dscFile);
imagedestroy($source_image);
imagedestroy($target_image);
imagedestroy($cropped_image);
}
js无刷新上传图片,服务端有生成缩略图,剪切图片,iphone图片旋转判断功能的更多相关文章
- ajaxFileUpload.js 无刷新上传图片,支持多个参数同时上传,支持 ie6-ie10
/* 131108-xxj-ajaxFileUpload.js 无刷新上传图片 jquery 插件,支持 ie6-ie10 依赖:jquery-1.6.1.min.js 主方法:ajaxFileUpl ...
- Thinkphp框架 -- ajax无刷新上传图片
用Thinkphp框架做无刷新上传图片 视图层 View <!doctype html> <html lang="en"> <head> < ...
- 使用SWFUpload无刷新上传图片
使用SWFUpload组件无刷新上传图片 在做项目时,需要用到一个图片的无刷新上传,之前听说过SWFUpload,于是想要通过SWFUpload来进行图片的无刷新上传,由于我的项目属于是ASP.NET ...
- nodejs利用ajax实现网页无刷新上传图片
nodejs利用ajax实现网页无刷新上传图片 标签(空格分隔): nodejs 通常情况下上传图片是要通过提交form表单来实现的,但是这又不可避免的产生了网页转. 利用ajax技术和FormDat ...
- php无刷新上传图片和文件
核心思想:通过Html的iframe标签属性操作顶级窗口,再用php动态无刷新上传图片文件. 示例如下: demo |------uploads #存放上传的文件 |------index.php | ...
- TP3.2:实现Ajax无刷新上传图片
1.基于TP3.2+ajaxfileupload进行无刷新上传图片,本次只上传一张,多张以后搞出来再发 2.效果: 3.html代码: <html> <head> < ...
- 无刷新上传图片,ajax 和 iframe
iframe 上传 upload.html 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 ...
- [Asp.net mvc]jquery.form.js无刷新上传
写在前面 最近在自己的网盘项目中想用ajax.beginform的方式做无刷新的操作,提交表单什么的都可以,但针对文件上传,就是个鸡肋.在网上查找了发现很多人都遇到了这个问题,大部分都推荐使用jque ...
- ajax无刷新上传图片
页面: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> & ...
随机推荐
- android 多媒体数据库(非原创)
推荐文章:http://fzlihui.iteye.com/blog/1097952,http://www.cnblogs.com/pen-ink/archive/2011/06/02/2068410 ...
- OpenCV整体的模块架构
之前啃了不少OpenCV的官方文档,发现如果了解了一些OpenCV整体的模块架构后,再重点学习自己感兴趣的部分的话,就会有一览众山小的感觉,于是,就决定写出这篇文章,作为启程OpenCV系列博文的第二 ...
- C#数组的声明
C#一维数组的声明方式 int[] myArray; string[] myStrArr; 但是在访问数组之前必须初始化. C#数组的初始化方式有两种,第一种是在声明数组的时候为数组的元素赋初值: i ...
- jQuery.serialize() 函数详解////////////z
serialize()函数用于序列化一组表单元素,将表单内容编码为用于提交的字符串. serialize()函数常用于将表单内容序列化,以便用于AJAX提交. 该函数主要根据用于提交的有效表单控件的n ...
- android ContentObserver
android 设置飞行模式 : 长按关机键 3 秒. 工作中,需要开启一个线程大量的查询某个数据库值发送了变化,导致的开销很大,后来在老大的指点下,利用了 ContentObserver完美的解 ...
- js字符串和正则表达式中的match、replace、exec等函数详解
正则并不是经常使用,而正则和字符串之间的函数关系又错综复杂,谁是谁的函数,又是怎么样的一种结果,往往我们是看一遍忘一遍,对此我是头疼不已,感觉自己是个笨蛋^_^. 为了以后不再查文档,特此把常用的函数 ...
- 增加VirtualBox虚拟机的磁盘空间大小(Host:Win7 VirtualBox5.0.16 VM:Win10)
1 前言 网上关于增加VirtualBox虚拟机的磁盘空间大小的文章非常非常多,这里我之所以再写一篇,是因为在参照这些文章做的时候,由于VirtualBox的版本更新以及其他一些环境问题,碰到到一些问 ...
- openWrt 安装与实践
1. 先装一个编译用的环境, ubuntu 14 2. 在ubuntu里面安装svn, g++, libncurses5-dev git libssl-dev gawk, svn因为openwrt社区 ...
- oracle函数,游标,视图使用总结0.000000000000000000001
oracle函数或者叫存储过程,在实际的开发过程中对于复杂的业务需求是非常有用的,非常有效率的也是非常好玩儿的一个技术点. 平常在开发过程中对于CRUD功能较多.一般SQL即可应付,大不了就是长一点而 ...
- 自定义readonly属性的用法
具有readonly特性的属性,相当于仅对外提供一个读取接口,在实现文件中是不会自动生成对应的成员变量的,因此使用方法为: // MyItem.h @interface MyItem : NSObje ...