Use Base64 String from URL in src tag of image

后端 未结 3 2078
别跟我提以往
别跟我提以往 2021-02-06 04:09

I have an service which returns the base64 version of an image. Now i want to use the base64 string in the src tag of an img. The service offers the ba

相关标签:
3条回答
  • 2021-02-06 04:27

    Data URI is a URI scheme, not an image file format. When you use src="http://...", the scheme is http, not data, the browser is expecting the response be an image, which means the response body should be the bytes of the image, not the base64 version.

    so you can either: 1. just return the bytes of the image from the server instead of base64 2. use ajax to load base64 version from server, then set image's src attribute with it.

    0 讨论(0)
  • 2021-02-06 04:40

    For base64 encoded .png and .jpg images, to remove single quotes use utf-8 while encoding.

    Example:

    src="data:image/jpeg;base64,iVBORw0KG...."
    
    0 讨论(0)
  • 2021-02-06 04:48

    It is not working because you are treating a page featuring a Data URL string, as if were just another type of external link-able image asset. Unfortunately linking to an external asset works for image files, but Data URLs are meant as an alternative to an external link, and thus does not work in the same way.

    In short, to display an image making use of a data URL string, you need put the actual data URL string as the src= value, in your case for example:

    <img alt="" src="data:image/gif;base64,iVBORw0KGgo ...  " style="height:836px; width:592px">
    

    Examples

    Example HTML from Masinter, 1998 RFC 2397 - The "data" URL scheme:

    <IMG SRC="data:image/gif;base64,R0lGODdhMAAwAPAAAAAAAP///ywAAAAAMAAw AAAC8IyPqcvt3wCcDkiLc7C0qwyGHhSWpjQu5yqmCYsapyuvUUlvONmOZtfzgFz ByTB10QgxOR0TqBQejhRNzOfkVJ+5YiUqrXF5Y5lKh/DeuNcP5yLWGsEbtLiOSp a/TPg7JpJHxyendzWTBfX0cxOnKPjgBzi4diinWGdkF8kjdfnycQZXZeYGejmJl ZeGl9i2icVqaNVailT6F5iJ90m6mvuTS4OK05M0vDk0Q4XUtwvKOzrcd3iq9uis F81M1OIcR7lEewwcLp7tuNNkM3uNna3F2JQFo97Vriy/Xl4/f1cf5VWzXyym7PH hhx4dbgYKAAA7" ALT="Larry">

    0 讨论(0)
提交回复
热议问题