Use this tool to generate the Data URI scheme for your images and directly embedd in the web html page
Thanks for using this software, for Cofee/Beer/Amazon bill and further development of this project please Share.
Any private key value that you enter or we generate is not stored on this site, this tool is provided via an HTTPS URL to ensure that private keys cannot be stolen, for extra security run this software on your network, no cloud dependency
Asking for donation sound bad to me, so i'm raising fund from by offering all my Nine book for just $9
The data URI scheme is a uniform resource identifier (URI) scheme that provides a way to include data in-line in Web pages as if they were external resources. The format of this scheme is
data:[<mediatype>][;base64],<data>
The mediatype is an Internet media type specification (with optional parameters.) The ";base64" means that the data is encoded as base64. Without ";base64", the data is represented using ASCII encoding for octets inside the range of safe URL characters and using the standard %xx hex encoding of URLs for octets outside that range.
If <mediatype> is omitted, it defaults to text/plain;charset=US-ASCII. As a shorthand, "text/plain" can be omitted but the charset parameter supplied.
Examples of data URIs s
data:application/octet-stream;base64,QQo=
data:application/x-gzip;base64,H4sIANG6Ml4AA
data:image/png;base64,iVBORw0K
data:text/plain;base64,SlBFUFZNNzBTUE
data:image/gif;base64,R0lGODlhsARZAv
.....
.....
You can embed the image data directly into the document with data URIs. The end result will look like this
<img src="data:image/png;base64, iVBORw0KGgo....." alt="Image Display using this scheme" /