


Detailed explanation of HTML5 to implement the function of taking and uploading photos on WeChat
This article mainly introduces the HTML5 implementation of the WeChat shooting and uploading photo function, the implementation of HTML5 Canvas mobile phone shooting, and the solutions to problems encountered when locally compressing and uploading pictures. It has certain reference value. Interested friends can refer to it.
I made a WeChat HTML5 shooting and uploading photo function, but there were many problems...
Front-end code
$(':file').on('change',function(){ var file = this.files[0]; var url = webkitURL.createObjectURL(file); /* 生成图片 * ---------------------- */ var $img = new Image(); $img.onload = function() { //生成比例 var width = $img.width, height = $img.height, scale = width / height; width = parseInt(800); height = parseInt(width / scale); //生成canvas var $canvas = $('#canvas'); var ctx = $canvas[0].getContext('2d'); $canvas.attr({width : width, height : height}); ctx.drawImage($img, 0, 0, width, height); var base64 = $canvas[0].toDataURL('image/jpeg',0.5); //发送到服务端 $.post('upload.php',{formFile : base64.substr(22) },function(data){ $('#php').html(data); }); } $img.src = url; });
Backend code
$base64 = $_POST['formFile']; $IMG = base64_decode( $base64 ); file_put_contents('1.png', $IMG );
##Actual measurement:
Computer terminalChrome version 29, uploaded successfully, source image 3M, compressed 1024 * ratio, about 250kbPassed!
Mobile terminalandroid version 4+, WeChat, click upload but no response, open in mobile browser to upload, shoot about 3M-, compressed 1024* Ratio, about 3M-, no compression at all! ! !fail!
iphone4 & 4s version 6+ WeChat, shot about 3M-, compressed to 1024 * ratio, about 250kbPassed!
iphone5 version 6+ WeChat, generate canvas deformation.fail!
Summary: System-level BUG, no solution...I don’t know what to do now...
----- ---------------------------------- Follow-up report September 12, 2013-------- ---------------------------------------------Find a JavaScript written by a great person Plug-in for compiling jpg, javascript_jpeg_encoder. Use this method to solve the problem that Android cannot compress images. There are currently 2 system-level BUGs left. 1. The WeChat android version cannot respond to the upload control input style=file;2. iPhone5 fails to generate canvas and the picture is distorted. --------------------------------------- Follow-up Report 2 2013 October 10------------------------------------------------There is also the ios-imagefile-megapixel plug-in written by a talented person, which solves the problem of iPhone5+ picture distortion. There is currently 1 system-level BUG left. The WeChat android version cannot respond to the upload control input style=file;-------------------------- ------------- Follow-up Report 3 May 16, 2014--------------------------- ------------------At present, all the problems have been solved. The plug-in has been established on github. Friends in need can get it. By the way, Time flies.The above is the detailed content of Detailed explanation of HTML5 to implement the function of taking and uploading photos on WeChat. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

DeepSeek: A powerful AI image generation tool! DeepSeek itself is not an image generation tool, but its powerful core technology provides underlying support for many AI painting tools. Want to know how to use DeepSeek to generate images indirectly? Please continue reading! Generate images with DeepSeek-based AI tools: The following steps will guide you to use these tools: Launch the AI Painting Tool: Search and open a DeepSeek-based AI Painting Tool (for example, search "Simple AI"). Select the drawing mode: select "AI Drawing" or similar function, and select the image type according to your needs, such as "Anime Avatar", "Landscape"

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.

Gate.io, a leading cryptocurrency trading platform founded in 2013, provides Chinese users with a complete official Chinese website. The website provides a wide range of services, including spot trading, futures trading and lending, and provides special features such as Chinese interface, rich resources and community support.

HTML5 Interview Questions 1. What are HTML5 multimedia elements 2. What is canvas element 3. What is geolocation API 4. What are Web Workers

Gateio Exchange app download channels for old versions, covering official, third-party application markets, forum communities and other channels. It also provides download precautions to help you easily obtain old versions and solve the problems of discomfort in using new versions or device compatibility.
