javascript - How to use blob URL in img tag src? -
i have generated blob url following format :
blob:file%3a///2aade.....
i tried use directly:
src="blob:file%.... "
and tried with"blob://" before url. raised 404 not found error!
what correct way display image through blob url?
the correct way is:
src= "blob:file....."
just set src blob url
my mistake not making sure image blob in first place!
Comments
Post a Comment