Introduction to using data URI scheme to embed images in web pages

Introduction to using data URI scheme to embed images in web pages
The data URI scheme allows us to include data in a web page using inline code, which can be used in Html, CSS, Javascript, etc.

The data URI scheme is often used to embed images into web pages, as follows:
<img alt="He Chongtian's headshot (your browser does not support the data URI scheme, the image cannot be displayed)" src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEBcQFxAAD/2wBD/*A lot of data is omitted here*/NONPmfvcqcdZR7XT27n//2Q%3D%3D"/>

The data URI scheme has the following format:
data:[<MIME-type>][;base64],<data>

This format is relatively simple. By comparison, we can see that the above img is a jpg image encoded using base64.
Embed this img into this page and it will be displayed as follows:
He Chongtian's headshot (your browser does not support the data URI scheme, the image cannot be displayed
In addition to base64 encoding, you can also use hexadecimal URL encoding in the form of %xx, as follows:
: : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : :

Generate image data According to the above format, we can write a small program to generate it, but we don’t need to be so troublesome. There are many websites that provide this (free) service.

Here are a few:

1. http://dataurl.sveinbjorn.org/dataurlmaker

Provide preview and easy copying.

2. http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

Provides preview and can generate corresponding CSS URI data.

3. http://software.hixie.ch/utilities/cgi/data/data

Tip: The generation is not limited to image data. There are three ways to use it (see 1, 2, 3 in the figure below). You can specify the encoding method, but the interface is not friendly.

Use in group presentations

Click the Insert/Edit Image button:

The following window pops up. Use any of the above URLs to generate image data and copy and paste it into the image address text box:

Click Insert, OK, as shown below:

View the effect: http://space.cnblogs.com/group/topic/41938/

<<:  Solution to the problem that the border style of the <td></td> tag cannot be displayed in the browser

>>:  Complete list of CentOS7 firewall operation commands

Recommend

Some slightly more complex usage example codes in mysql

Preface I believe that the syntax of MySQL is not...

Detailed explanation of JavaScript program loop structure

Table of contents Select Structure Loop Structure...

MySQL password modification example detailed explanation

MySQL password modification example detailed expl...

MySQL data migration using MySQLdump command

The advantages of this solution are simplicity an...

Summary of changes in the use of axios in vue3 study notes

Table of contents 1. Basic use of axio 2. How to ...

Detailed explanation of the use of MySQL Online DDL

Table of contents text LOCK parameter ALGORITHM p...

vmware virtual machine ubuntu18.04 installation tutorial

Installation Steps 1. Create a virtual machine 2....

Usage and execution process of http module in node

What is the role of http in node The responsibili...

A Brief Analysis of Patroni in Docker Containers

Table of contents Create an image File Structure ...

Detailed explanation of CSS counter related attributes learning

The CSS counter attribute is supported by almost ...

CSS sets the list style and creates the navigation menu implementation code

1. Set the list symbol list-style-type: attribute...

How to install Elasticsearch7.6 cluster in docker and set password

Table of contents Some basic configuration About ...

Detailed explanation of the adaptive adaptation problem of Vue mobile terminal

1. Create a project with vue ui 2. Select basic c...

Use JS to zoom in and out when you put the mouse on the image

Use JS to zoom in and out when the mouse is on th...

JavaScript basics for loop and array

Table of contents Loop - for Basic use of for loo...