ng-image-input
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

NgImageInput

Install

npm install ng-image-input

Usage

Step 1:

Import NgImageInputModule

import { NgImageInputModule } from "ng-image-input";
 
@NgModule({
  imports: [
    //...
    NgImageInputModule,
  ],
})
export class AppModule {}

Step 2:

Use ng-image-input in the same way as regular input element

<!--app.component.html-->
<ng-image-input [(ngModel)]="image" (ngModelChange)="onChange($event)">
</ng-image-input>
 
<div>
  <img *ngIf="image" [src]="image.base64" />
</div>
// app.component.ts
import { Component } from "@angular/core";
import { ImageInputValue } from "ng-image-input";
 
@Component({
  selector: "app-root",
  templateUrl: "./app.component.html",
  styleUrls: ["./app.component.scss"],
})
export class AppComponent {
  image: ImageInputValue;
 
  onChange(image: ImageInputValue) {
    this.image = image;
  }
 
  save() {
    console.log(this.image?.file);
  }
}

Readme

Keywords

none

Package Sidebar

Install

npm i ng-image-input

Weekly Downloads

0

Version

0.1.0

License

ISC

Unpacked Size

34.1 kB

Total Files

17

Last publish

Collaborators

  • zhiguang