The solution of html2canvas that pictures cannot be captured normally

The solution of html2canvas that pictures cannot be captured normally

question

First, let me talk about the problem I encountered. First of all, there is such a demand. The front end needs to dynamically generate pictures based on the data sent from the back end. The text, background image, and user avatar in the picture are all obtained through the backend interface. However, some images were successfully generated in the canvas using the canvas generated by html2canvas. But some pictures cannot be displayed no matter what.

Official Documentation

I worked on the project for a long time without success, and searched on Google for a long time without success. There was a bit of despair at this moment. Suddenly it occurred to me, why not go to its official website. So I saw the following content on the official website.

Limitations<br/>
All the images that the script uses need to reside under the same origin for it to be able to read them without the assistance of a proxy. Similarly, if you have other canvas elements on the page, which have been tainted with cross-origin content, they will become dirty and no longer readable by html2canvas.<br/>
The script doesn't render plugin content such as Flash or Java applets.

What is it about? Here is a translation for those who are not good at English. Those who are good at English can read the above text directly. The general meaning is that in html2canvas, scripts are used to operate, that is, scripts are used to convert HTML into canvas, but there is a limitation, that is, cross-source images cannot be used. If used, html2canvas will not read the resource.

This is why some images on the converted canvas are always blank. If there are other canvases on the page that also use cross-origin image resources, html2canvas will not read them.

Solution

Just forward the static resources once and allow loading cross-origin resources in the html2canvas configuration.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Docker uses a single image to map to multiple ports

>>:  Object.entries usage you don't know in JavaScript

Recommend

Detailed comparison of Ember.js and Vue.js

Table of contents Overview Why choose a framework...

Solution to the welcome to emergency mode message when booting CentOS7.4

Today I used a virtual machine to do an experimen...

CSS complete parallax scrolling effect

1. What is Parallax scrolling refers to the movem...

Example code for Html layered box-shadow effect

First, let’s take a look at the picture: Today we...

A brief discussion on event-driven development in JS and Nodejs

Table of contents Event-driven and publish-subscr...

Detailed explanation of box-sizing in CSS3 (content-box and border-box)

Box-sizing in CSS3 (content-box and border-box) T...

MySQL 5.6 binary installation process under Linux

1.1 Download the binary installation package wget...

JS implements dragging the progress bar to change the transparency of elements

What I want to share today is to use native JS to...

Detailed process of installing Jenkins-2.249.3-1.1 with Docker

Table of contents 1. Install Docker 2. Pull the J...

Navicat Premium operates MySQL database (executes sql statements)

1. Introduction to Navicat 1. What is Navicat? Na...

Linux yum package management method

Introduction yum (Yellow dog Updater, Modified) i...

Example of how to generate random numbers and concatenate strings in MySQL

This article uses an example to describe how MySQ...

Navicat connects to MySQL8.0.11 and an error 2059 occurs

mistake The following error occurs when connectin...

Detailed explanation of how to synchronize data from MySQL to Elasticsearch

Table of contents 1. Synchronization Principle 2....