PHP realizes pasting screenshots and completing the upload function_PHP tutorial
WBOY
Release: 2016-07-13 09:53:57
Original
945 people have browsed it
PHP implements the function of pasting screenshots and completing the upload
Today I found that you can paste and upload pictures in the comments of segmentfault, so I studied how to achieve it!
The principle is very simple. In fact, it is to monitor the paste event, and then detect whether there are pictures in the pasted things. If so, it will directly trigger the ajax upload
The code can be run directly. If you are interested, you can try it
<🎜>header("Access-Control-Allow-Origin:*");<🎜>
<🎜>$url = 'http://'.$_SERVER['HTTP_HOST'];<🎜>
<🎜>$file = (isset($_POST["file"])) ? $_POST["file"] : '';<🎜>
<🎜>if($file)<🎜>
<🎜>{<🎜>
<🎜>$data = base64_decode(str_replace('data:image/png;base64,', '', $file)); //The screenshot can only get png format pictures, so just process the png.<🎜>
<🎜>$name = md5(time()) . '.png'; // The file name is md5 processed here<🎜>
<🎜>file_put_contents($name, $data);<🎜>
<🎜>echo "$url/$name";<🎜>
<🎜>die;<🎜>
<🎜>}<🎜>
<🎜>?>
<script>
//Find the box element and detect when pasting,
document.querySelector('#box').addEventListener('paste', function(e) {
//Determine whether it is a pasted image
if (e.clipboardData && e.clipboardData.items[0].type.indexOf('image') > -1)
{
var that = this,
reader = new FileReader();
file = e.clipboardData.items[0].getAsFile();
//Ajax upload pictures
reader.onload = function(e)
{
var xhr = new XMLHttpRequest(),
fd = new FormData();
xhr.open('POST', '', true);
xhr.onload = function ()
{
var img = new Image();
img.src = xhr.responseText;
// that.innerHTML = '<img src="' img.src '"alt=""/>';
document.getElementById("img_puth").value = img.src;
}
// this.result gets the base64 of the image (can be used for instant display)
fd.append('file', this.result);
that.innerHTML = '<img src="' this.result '"alt=""/>';
xhr.send(fd);
}
reader.readAsDataURL(file);
}
}, false);
</script>
The above is the entire content of this article, I hope you all like it.
http://www.bkjia.com/PHPjc/1000072.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1000072.htmlTechArticlephp realizes pasting screenshots and completing the upload function. Today I found that you can paste and upload pictures in the comments of segmentfault, so I did some research. How to achieve it! The principle is very simple. In fact, it is to monitor the sticky...
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