Now there are many WeChat public account operation activities, and there is a need to generate pictures. After the pictures are generated, they can be sent to friends and spread to the circle of friends, which is conducive to the promotion of products! 1.You can use canvas to generate images, but since there is already an open source library called html2canvas, I didn't write it myself to save time. github address: html2canvas LiveDemo /** * Get the pixel ratio according to window.devicePixelRatio*/ function DPR() { if (window.devicePixelRatio && window.devicePixelRatio > 1) { return window.devicePixelRatio; } return 1; } /** * Convert the passed value to an integer */ function parseValue(value) { return parseInt(value, 10); }; /** * Draw canvas */ async function drawCanvas (selector) { // Get the DOM node you want to convert const dom = document.querySelector(selector); const box = window.getComputedStyle(dom); // DOM node calculated width and height const width = parseValue(box.width); const height = parseValue(box.height); // Get pixel ratio const scaleBy = DPR(); // Create a custom canvas element var canvas = document.createElement('canvas'); // Set the canvas element attributes width and height to DOM node width and height * pixel ratio canvas.width = width * scaleBy; canvas.height = height * scaleBy; // Set canvas css width and height to DOM node width and height canvas.style.width = `${width}px`; canvas.style.height = `${height}px`; // Get the brush const context = canvas.getContext('2d'); // Scale all drawn content by pixel ratio context.scale(scaleBy, scaleBy); let x = width; let y = height; return await html2canvas(dom, {canvas}).then(function () { convertCanvasToImage(canvas, x, y) }) } /** * Convert the image to base64 format*/ function convertCanvasToImage(canvas, x, y) { let image = new Image(); let _container = document.getElementsByClassName('container')[0]; let _body = document.getElementsByTagName('body')[0]; image.width = x; image.height = y; image.src = canvas.toDataURL("image/png"); _body.removeChild(_container); document.body.appendChild(image); return image; } drawCanvas('.container') 2.Since current mobile phones all have high-definition screens, the images will appear blurry if you don’t process them. Why will they appear blurry? This involves the device pixel ratio devicePixelRatio js provides window.devicePixelRatio to get the device pixel ratio function DPR() { if (window.devicePixelRatio && window.devicePixelRatio > 1) { return window.devicePixelRatio; } return 1; } This DPR function is used to obtain the pixel ratio of the device. What should be done after obtaining the pixel ratio? var canvas = document.createElement('canvas'); // Set the canvas element attributes width and height to DOM node width and height * pixel ratio canvas.width = width * scaleBy; canvas.height = height * scaleBy; // Set canvas css width and height to DOM node width and height canvas.style.width = `${width}px`; canvas.style.height = `${height}px`; // Get the brush const context = canvas.getContext('2d'); // Scale all drawn content by pixel ratio context.scale(scaleBy, scaleBy); 3.After getting the device pixel ratio, multiply canavs.width and canvas.height by the device pixel ratio, which is scaleBy; at this time, set canvas.style.width and canvas.style.height to the width and height of the dom. Think about why you write it this way? Finally, when drawing, enlarge the pixel ratio of the drawn content by times For example, the device width and height of iPhone 6S is 375 X 667, and the window.devicePixelRatio of 6S = physical pixels / dips (2=750/375). So are the designs that designers usually give you 750*1334? So if you draw it on a high-definition screen at a 1:1 ratio, it will be blurry. See the picture for yourself. 6S DPR=2 6plus DPR=3 4.Finally, call canvas.toDataURL("image/png"); assign it to image.src. Since WeChat cannot save pictures, we can only generate picture files and call WeChat's built-in long press function to save pictures to the album. This is the end of this article about the solution of generating images with JavaScript on mobile H5. For more relevant content about generating images with JavaScript on mobile H5, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed steps to configure my.ini for mysql5.7 and above
>>: How to get the current time using time(NULL) function and localtime() in Linux
Today, when I logged into the company's inter...
Table of contents Table/index.js Table/model/inde...
Table of contents 1. Introduction 2. Simple epoll...
Table of contents Single content projection Multi...
Good morning everyone, I haven’t updated my artic...
Preface The database deadlocks I encountered befo...
Table of contents 1. Prototype 2. Prototype chain...
First, let me introduce how to install PHP on Cen...
1. Introduction to Middleware 1. Basic concepts E...
1. InnoDB storage engine must be used It has bett...
Background Controller @RequestMapping("/getP...
Some time ago, when I was working on a small func...
Table of contents 1. Test Data 2. The inconvenien...
1. Naming conventions 1. Database names, table na...
1. Each function is an object and occupies memory...