bleenco / ngx-uploader

Angular File Uploader
https://ngx-uploader.jankuri.me
MIT License
755 stars 348 forks source link

How to preview image before upload? #320

Closed annibuliful closed 7 years ago

annibuliful commented 7 years ago

I can fix it

TonyLuo commented 7 years ago

@lagmanzaza how to fix it?

annibuliful commented 7 years ago

readUrl(event) { if (event.target.files && event.target.files[0]) { var reader = new FileReader(); reader.onload = (event) => { let data: any = event.target; this.previewImage = data.result; } reader.readAsDataURL(event.target.files[0]); } }