Ajax+PHP边学边练 之五 图片处理

时间:2023-11-18 07:21:29 

先上个效果图:

Ajax+PHP边学边练 之五 图片处理 
Sample6_1.php 中创建Form:


//显示上传状态和图片
<div id="showimg"></div>
//上传文件需要定义enctype,为了显示图片将target设为uploadframe
<form id="uploadform" action="process_upload.php" method="post"
enctype="multipart/form-data" target="uploadframe">
Upload a File:<br />
<input type="file" id="myfile" name="myfile" />
//上传文件
<input type="submit" value="Submit" onclick="uploadimg(document.getElementById('uploadform')); return false;" />
<iframe id="uploadframe" name="uploadframe" src="process_upload.php" class="noshow"></iframe>
</form>


上传图片函数 uploadimg:


function uploadimg(theform){
//提交Form
theform.submit();
//在showimg <div>中显示上传状态
setStatus ("Loading...","showimg");
}
//上传状态函数
function setStatus (theStatus, theObj){
obj = document.getElementById(theObj);
if (obj){
obj.innerHTML = "<div class=\"bold\">" + theStatus + "</div>";
}
}


process_upload.php 提供文件上传功能:


<?php
//提供图片类型校验
$allowedtypes = array("image/jpeg","image/pjpeg","image/png", "image/x-png","image/gif");
//文件存放目录
$savefolder = "images";

//如果有文件上传就开始干活
if (isset ($_FILES['myfile'])){
//检查上传文件是否符合$allowedtypes类型
if (in_array($_FILES['myfile']['type'],$allowedtypes)){
if ($_FILES['myfile']['error'] == 0){
$thefile = "$savefolder/".$_FILES['myfile']['name'];
//通过move_uploaded_file上传文件
if (!move_uploaded_file($_FILES['myfile']['tmp_name'], $thefile)){
echo "There was an error uploading the file.";
}
else{
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="functions.js"></script>
</head>
<body>
<!-- 显示图片 -->
<img src="<?php echo $thefile; ?>" onload="doneloading(parent,'<?php echo $thefile; ?>')" />
</body>
</html>
<?php
}
}
}
}
?>


上面代码最后部分的doneloading 函数就是用来显示图片及修改图片尺寸大小。其中会用到thumb.php,它会在images目录中生成出源图片的大、中、小三个尺寸,有兴趣可以研究一下。欢迎大家拍砖~
文中源码打包下载

标签:Ajax,PHP,图片处理
0
投稿

猜你喜欢

  • Python中处理无效数据的详细教程

    2021-11-18 06:11:07
  • 禁用JavaScript脚本来复制网站内容

    2007-02-03 11:30:00
  • Python的动态重新封装的教程

    2023-08-23 15:26:39
  • GO语言(golang)基础知识

    2024-02-13 18:04:03
  • 使用Python将数组的元素导出到变量中(unpacking)

    2022-01-12 10:11:43
  • openCV入门学习基础教程第三篇

    2022-05-20 00:00:59
  • Pytorch数据拼接与拆分操作实现图解

    2021-08-01 04:37:05
  • 判断字段是否被更新 新旧数据写入Audit Log表中

    2012-01-29 17:56:33
  • TXT.WORD文档下载另存为,而不是在浏览器中打开

    2007-10-25 11:43:00
  • Python编程基础之字典

    2021-10-02 13:34:56
  • PHP实现动态删除XML数据的方法示例

    2024-06-05 09:51:28
  • python用quad、dblquad实现一维二维积分的实例详解

    2022-02-17 05:32:51
  • python3如何使用Requests测试带签名的接口

    2022-04-14 11:25:37
  • Django restframework 框架认证、权限、限流用法示例

    2023-01-17 15:51:20
  • python字符串循环左移

    2023-08-28 19:32:13
  • vue.js中ref和$refs的使用及示例讲解

    2024-04-28 09:24:59
  • 心理模型

    2009-05-17 13:45:00
  • linux系统oracle数据库出现ora12505问题的解决方法

    2024-01-27 09:06:15
  • Python VTK映射三维模型表面距离

    2021-10-14 12:21:42
  • Python中OpenCV实现查找轮廓的实例

    2023-12-05 05:26:24
  • asp之家 网络编程 m.aspxhome.com