Skip to content

Instantly share code, notes, and snippets.

View pmanijak's full-sized avatar
📷
oh no

Philip Manijak pmanijak

📷
oh no
  • Olympia, Washington
View GitHub Profile
@pmanijak
pmanijak / image-overlay.html
Created March 31, 2020 09:56
HTML and JavaScript client-side image overlay and download
<html>
<head>
<!-- https://html2canvas.hertzen.com/ -->
<script src="html2canvas.min.js"></script>
<script>
function previewFile() {
const preview = document.querySelector('#client-image');
const file = document.querySelector('input[type=file]').files[0];
const reader = new FileReader();