How to preview selected image in input type="file" || image view in select image || Angular Image

Опубликовано: 28 Сентябрь 2024
на канале: TECH SOFT
404
6

live stepe by stepe

How to preview selected image in input type="file"
Image preview before upload in angular
Show an image preview before uploading using Angular
Angular 15 Show Image Preview with Reactive Forms
How to upload and display Image using Angular
Angular 14 Image Upload with Preview example
Angular and Ionic Select Image & text Example

img src="../assets/{{url}}" width="100px" height="100px"
input type="file" #img
button (click)="onSetImg(img.files)"Set Image /button

onSetImg(img:any){
console.log(img[0].name)
this.url = img[0].name
}