Skip to content

Instantly share code, notes, and snippets.

View Shinsekai7's full-sized avatar
😀

Shinsekai Shinsekai7

😀
View GitHub Profile
@Shinsekai7
Shinsekai7 / mime.html
Created July 16, 2019 23:27 — forked from topalex/mime.html
How to check real mime type of image in javascript
<html>
<head>
<script type="text/javascript" src="/jquery.min.js"></script>
<title>Mime type checker</title>
<script>
$(function () {
var result = $('div#result');
if (window.FileReader && window.Blob) {
$('span#submit').click(function () {
var files = $('input#file').get(0).files;
@Shinsekai7
Shinsekai7 / index.html
Created July 16, 2019 21:18 — forked from khlbrg/index.html
Use filereader to extract mimetype
<!doctype html>
<html lang="en">
<head>
<title>Filereader</title>
<style>
div {
font-family: "Helvetica Neue";
line-height:22px;
font-size:15px;
margin:10px 0;