php+html5兼容手机端的图片选取裁剪上传实例

本文介绍了一款兼容手机端的图片选取、裁剪及上传插件,使用PHP和HTML5实现,分享了代码示例及如何在网页中集成该功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

网上大多图片上传插件都不带裁剪功能,这个是php+html5实现的兼容手机端的图片选取裁剪上传实例,分享出来希望能帮到大家。

首先放置一个上传按钮及相关预览信息等

<form id="upload_form" enctype="multipart/form-data" method="post" action="upload.php" onsubmit="return checkForm()">  
   <!-- hidden crop params -->  
   <input type="hidden" id="x1" name="x1" autocomplete="off" />  
   <input type="hidden" id="y1" name="y1" autocomplete="off" />  
   <input type="hidden" id="x2" name="x2" autocomplete="off" />  
   <input type="hidden" id="y2" name="y2" autocomplete="off" />  
   <input type="file" name="image_file" id="image_file" onchange="fileSelectHandler()" />  
   <div class="error"> 
    注意:上传前,先截图 
   </div>  
   <div class="step2">  
    <img id="preview" />  
    <div class="info">  
     <ul>  
      <li><label>文件大小</label> <input type="text" id="filesize" name="filesize" class="input" autocomplete="off" /></li>  
      <li><label>类型</label> <input type="text" id="filetype" name="filetype" class="input" autocomplete="off" /></li>  
      <li><label>图像尺寸</label> <input type="text" id="filedim" name="filedim" class="input" autocomplete="off" /></li>  
      <li><label>宽度</label> <input type="text" id="w" name="w" class="input" autocomplete="off" /></li>  
      <li><label>高度</label> <input type="text" id="h" name="h" class="input" autocomplete="off" /></li>  
     </ul>  
    </div>  
    <input type="submit" value="上传" class="btn" />  
   </div>  
</form>

接着引用js和css样式

<link href="css/jquery.Jcrop.min.css" rel="stylesheet" type="text/css" /> 
<script type="text/javascript" src="jquery.js"></script>  
<script src="js/jquery.Jcrop.min.js"></script>

接着看下表单的检查

function checkForm() { 
    if (parseInt($('#w').val())) //若是没有截屏 
        return true; 
    $('.error').html('请先选择图片,并且截图').show(); 
    return false; 
}

上传文件条件设置

var rFilter = /^(image\/jpeg|image\/png|image\/jpg)$/i; 
if (!rFilter.test(oFile.type)) { 
    $('.error').html('请选择jpg、jpeg或png格式的图片').show(); 
    return; 
} 
  
// check for file size 
if (oFile.size > 1000 * 1024) { 
    $('.error').html('请上传小于1M的图片').show(); 
    return; 
}

本文转自: https://www.sucaihuo.com/php/71.html 转载请注明出处!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值