canvas.toDataURL image/png error handling method recommendation

canvas.toDataURL image/png error handling method recommendation

Problem background:

There is a requirement to take a screenshot of the playing video. The video is played using the video tag, and then a real-time frame image is captured when the video playing area is clicked.

The code is very simple as follows:

JavaScript CodeCopy content to clipboard
  1. var video = document.getElementById( 'video' );
  2.   
  3. var canvas = document.getElementById( 'canvas' );
  4.   
  5. var ctx = canvas.getContext( '2d' );
  6.   
  7. var img = document.getElementById( 'img' );
  8.   
  9. function snapshot() {
  10. ctx.drawImage(video,0,0);
  11. img.src = canvas.toDataURL( 'image/png' );
  12. }
  13.   
  14. video.addEventListener( 'click' , snapshot, false );

Questions:

Uncaught SecurityError: Failed to execute 'toDataURL' on 'HTMLCanvasElement': Tainted canvases may not be exported.

After checking and analyzing, we found that this was actually because the domain where the video file was located was different from the domain where the picture and page were located, resulting in a cross-domain transmission problem.

Solution:

Place the video file under the domain where the page is located.

Original address: http://blog.csdn.net/luochao_tj/article/details/44942125

<<:  mysql wildcard (sql advanced filtering)

>>:  IE6/7 is going to be a mess: empty text node height issue

Recommend

Solution to Ubuntu 20.04 Firefox cannot play videos (missing flash plug-in)

1. Flash plug-in package download address: https:...

What does the "a" in rgba mean? CSS RGBA Color Guide

RGBA is a CSS color that can set color value and ...

Specific use of lazy loading and preloading in js

Delayed loading (lazy loading) and preloading are...

Search engine free collection of website entrances

1: Baidu website login entrance Website: http://ww...

VMware + Ubuntu18.04 Graphic Tutorial on Building Hadoop Cluster Environment

Table of contents Preface VMware clone virtual ma...

Four ways to modify the default CSS style of element-ui components in Vue

Table of contents Preface 1. Use global unified o...

MySQL can actually implement distributed locks

Preface In the previous article, I shared with yo...

Analysis of MySQL duplicate index and redundant index examples

This article uses examples to describe MySQL dupl...

Introduction to the use of HTML element noscript

noscript definition and usage The noscript elemen...

How to use JS to implement waterfall layout of web pages

Table of contents Preface: What is waterfall layo...

js Promise concurrent control method

Table of contents question background Idea & ...

MySQL 5.7.21 installation and password configuration tutorial

MySQL5.7.21 installation and password setting tut...

How to build gitlab on centos6

Preface The original project was placed on the pu...

Difference between HTML ReadOnly and Enabled

The TextBox with the ReadOnly attribute will be di...