Home php教程 php手册 php+js实现图片的上传、裁剪、预览、提交示例

php+js实现图片的上传、裁剪、预览、提交示例

Jun 06, 2016 pm 08:27 PM
upload picture Image cropping

首先用到的语言是php、插件imgareaselect附下载地址,没有太多花哨的样式,喜欢的朋友可以学习下

首先用到的语言是php、插件imgareaselect(下载地址),没有太多花哨的样式,index.php代码如下:

复制代码 代码如下:










图片裁剪、预览


//上传图片后,服务器空间,把图片复制到upload文件夹下面
if($_POST){
$photo = $_FILES['img']['name'];
$tmp_addr = $_FILES['img']['tmp_name'];

$path = 'upload/';
$type=array("jpg","gif","jpeg","png");
$tool = substr(strrchr($photo,'.'),1);
if(!in_array(strtolower($tool),$type)){
$text=implode('.',$type);
echo "您只能上传以下类型文件: ",$text,"
";
}else{
$filename = explode(".",$photo); //把上传的文件名以"."好为准做一个数组。
$time = date("m-d-H-i-s"); //取当前上传的时间
$filename[0] = $time; //取文件名
$name = implode(".",$filename); //上传后的文件名
$uploadfile = $path.$name;
$_SESSION['upfile'] = $uploadfile;//上传后的文件名地址
move_uploaded_file($tmp_addr,$uploadfile);
}
// echo $uploadfile;
}
?>







if(isset($_SESSION['upfile'])){?>
php+js实现图片的上传、裁剪、预览、提交示例
}?>




php+js实现图片的上传、裁剪、预览、提交示例


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement image cropping function in JavaScript? How to implement image cropping function in JavaScript? Oct 18, 2023 am 09:54 AM

How to implement image cropping function in JavaScript? With the rapid development of mobile Internet, image cropping functions have become more and more common in many websites and mobile applications. As a front-end development language, JavaScript provides many libraries and technologies to implement image cropping functions. This article will introduce how to use JavaScript to implement the image cropping function and provide specific code examples. 1. HTML structure design First, we need to create a container in the page to display pictures and cropping boxes

How to use vue and Element-plus to implement image cropping and rotation functions How to use vue and Element-plus to implement image cropping and rotation functions Jul 19, 2023 pm 07:04 PM

How to use Vue and ElementPlus to implement image cropping and rotation functions Introduction: As web applications have higher and higher requirements for user experience, image processing has become a part that cannot be ignored. As a popular JavaScript framework, Vue, combined with ElementPlus, an excellent UI component library, provides us with a wealth of tools and functions to quickly and easily crop and rotate images. This article will be based on Vue and ElementPlus to introduce you to

WeChat applet implements image upload function WeChat applet implements image upload function Nov 21, 2023 am 09:08 AM

WeChat applet implements picture upload function With the development of mobile Internet, WeChat applet has become an indispensable part of people's lives. WeChat mini programs not only provide a wealth of application scenarios, but also support developer-defined functions, including image upload functions. This article will introduce how to implement the image upload function in the WeChat applet and provide specific code examples. 1. Preparatory work Before starting to write code, we need to download and install the WeChat developer tools and register as a WeChat developer. At the same time, you also need to understand WeChat

VUE3 Getting Started Example: Making a Simple Image Cropper VUE3 Getting Started Example: Making a Simple Image Cropper Jun 15, 2023 pm 08:45 PM

Vue.js is a popular JavaScript front-end framework. The latest version - Vue3 has been launched. The new version of Vue has improved performance, size and development experience, and is welcomed by more and more developers. This article will introduce how to use Vue3 to make a simple image cropper. First, we need to create a Vue project and install the required plugins. You can use VueCLI to create a project, or you can build it manually. Here we take the method of using VueCLI as an example: #

Steps to implement image uploading and display using CakePHP framework Steps to implement image uploading and display using CakePHP framework Jul 29, 2023 pm 04:21 PM

Steps to implement image upload and display using CakePHP framework Introduction: In modern web applications, image upload and display are common functional requirements. The CakePHP framework provides developers with powerful functions and convenient tools, making it simple and efficient to upload and display images. This article will introduce you to how to use the CakePHP framework to upload and display images. Step 1: Create a file upload form First, we need to create a form in the view file for users to upload images. The following is an example of

How to handle image uploading and compression in Vue technology development How to handle image uploading and compression in Vue technology development Oct 08, 2023 am 10:58 AM

How to handle image uploading and compression in Vue technology development In modern web applications, image uploading is a very common requirement. However, due to network transmission and storage reasons, directly uploading original high-resolution images may result in slow upload speeds and a large waste of storage space. Therefore, uploading and compressing images is very important. In Vue technology development, we can use some ready-made solutions to handle image uploading and compression. The following will introduce how to use vue-upload-comone

How to implement image cropping and uploading function in JavaScript? How to implement image cropping and uploading function in JavaScript? Oct 24, 2023 am 09:15 AM

How to implement image cropping and uploading function in JavaScript? In web development, we often encounter the need for users to upload and crop images, such as avatar uploading, image editing, etc. JavaScript provides a wealth of APIs and functions that can help us implement such functions. This article will introduce how to use JavaScript to implement image cropping and uploading functions, and provide specific code examples. First, we need to add an element for displaying pictures in the HTML file, such as an

How to use PHP and Vue to implement image upload function How to use PHP and Vue to implement image upload function Sep 25, 2023 pm 03:17 PM

How to use PHP and Vue to implement the image upload function. In modern web development, the image upload function is a very common requirement. This article will introduce in detail how to use PHP and Vue to implement the image upload function, and provide specific code examples. 1. Front-end part (Vue) First, you need to create a form for uploading images on the front-end. The specific code is as follows:<template><div><inputtype="fil

See all articles