Skip to content

Instantly share code, notes, and snippets.

@jpthewes
jpthewes / input.component.ts
Created May 18, 2021 15:05
SVG file altering
onFileChange(ev: any) {
var data_uri = new String;
// asuming that only 1 file is uploaded
const file = ev.target.files[0];
// Check file size
if (file.size > <SILE_LIMIT>) {
// do your feedback
return;
}