You are here:Home»KB»Web Design»HTML»Embed an image directly into HTML
Thursday, 26 May 2016 18:12

Embed an image directly into HTML

Written by

It is possibly to directly embed an image in to the HTML rather than linking it as you normally would. This is very useful when you want to write contained articles, some apps or where you are not able to link to external assets.

The following technique embed a binary image directly within an <img> tag

  1. Get your image and convert it in to bas64 format
  2. Create the <img> reference as layed out below
  3. Done

NB: Dont use this method for large images.

Example

dell docking station

HTML

This code is not complete because it is sending my search funny.

<img src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAUDBAQEAwUEBAQFBQUGBwwIBwcHBw8LCwkMEQ8SEhEPERETFhwXExQaFRERGCEYGh0dHx8fExciJCIeJBweHx7/2wBDAQUFBQcGBw4ICA4eFBEUHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh7/wAARCAGQAZADASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL" alt="">

 

Read 1002 times Last modified on Saturday, 02 July 2016 08:43