PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Friday, July 29, 2022

[FIXED] How to get mimeType from HTMLImageElement?

 July 29, 2022     html, image, javascript     No comments   

Issue

I checked MDN docs about HTMLImageElement.

But i couldn't find any information about mimeType.

I was able to find few docs about how to get mineType from File Object

But i need to get mimeType from url string

In my javascript logic i actually load the source to create Image object.
I hope i can find mimeType from this.

       const image = new Image();
       image.addEventListener("load", () => callBack(image));
       image.src = url;

Solution

Convert image to base64. The base64 string has mime type in the start. Extract mime type from that string. Check the below links.

Convert image to base64

https://www.codegrepper.com/code-examples/javascript/how+to+convert+image+to+base64+in+javascript

Extract mime type from base64

How to get MIME-TYPE from Base 64 String?

Regards, omi



Answered By - omi
Answer Checked By - David Goodson (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing