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: 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/ |
>>: Complete list of CentOS7 firewall operation commands
Preface I believe that the syntax of MySQL is not...
Table of contents Select Structure Loop Structure...
MySQL password modification example detailed expl...
The advantages of this solution are simplicity an...
Table of contents 1. Basic use of axio 2. How to ...
Table of contents text LOCK parameter ALGORITHM p...
Installation Steps 1. Create a virtual machine 2....
What is the role of http in node The responsibili...
Table of contents Create an image File Structure ...
The CSS counter attribute is supported by almost ...
1. Set the list symbol list-style-type: attribute...
Table of contents Some basic configuration About ...
1. Create a project with vue ui 2. Select basic c...
Use JS to zoom in and out when the mouse is on th...
Table of contents Loop - for Basic use of for loo...