Angular使用 ng-img-max 调整浏览器中的图片的示例代码
你想在angular应用程序中进行图片上传,是否想在图片上传之前在前端限制上传图片的尺寸?ng2-img-max模块正是你所要的! ng2-img-max模块会使用web sorkers 进行图片大小的计算,并驻留在主线程中。
我们来看看他的用途:
安装
首先,使用npm 或 yarn安装模块:
$ npm install ng2-img-max blueimp-canvas-to-blob --save # or yarn : $ yarn add ng2-img-max blueimp-canvas-to-blob
blueimp-canvas-to-blob是一个polyfill,以便canvas.toblob()
可以在safari和旧版本的internet explorer等浏览器上使用。
将polyfill脚本包含在项目中。 如果您使用angular cli,您可以将脚本添加到.angular-cli.json文件中:
//: .angular-cli.json ... "scripts": [ "../node_modules/blueimp-canvas-to-blob/js/canvas-to-blob.min.js" ], //...
将脚本添加到angular cli配置后,您将需要重新启动本地服务。
现在我们将模块导入应用模块或功能模块:
//: app.module.ts //... import { ng2imgmaxmodule } from 'ng2-img-max'; @ngmodule({ declarations: [ appcomponent ], imports: [ //... ng2imgmaxmodule ], providers: [], bootstrap: [ appcomponent ] }) export class appmodule {}
最后,ng2-img-max服务可以导入并注入到这样的组件中:
import { component } from '@angular/core'; import { ng2imgmaxservice } from 'ng2-img-max'; @component({ ... }) export class appcomponent { constructor(private ng2imgmax: ng2imgmaxservice ) {} }
使用
我们添加一个file文件输入框到组件的模板中,像这样:
<input type='file' (change)="onimagechange($event)" accept="image/*" />
在组件类中添加方法onimagechange, 它将会限制图片的宽高为:400px,300px:
updateimage: blob; constructor(private ng2imgmax: ng2imgmaxservice) {} onimagechange(event){ let image = event.target.files[0]; this.ng2imgmax.resizeimage(image,400,300).subscribe(result=> { this.uploadimage = result; }, error=> { console.log('error:',error); }) }
如果您有多个图像需要一次性调整大小,请改用resize方法,并将图片文件数组作为第一个参数传入。
结果是blob类型,但是如果需要,可以使用file构造函数将其转换为正确的文件:
//: app.component.ts uploadedimage: file; constructor(private ng2imgmax: ng2imgmaxservice) {} onimagechange(event){ let image = event.target.files[0]; this.ng2imgmax.resizeimage(image,400,300).subscribe(result=> { this.uploadedimage = new file([result],result.name); }, error=> { console.log('error',error); }) }
您现在可以将文件上传到您的后端。 不要忘记在后端做好验证,因为这里的内容会阻止一些用户将超大或非图像文件直接上传到后端。
只限制宽度或高度
假设您只想将高度限制为300px,并相应调整宽度,以保持宽高比相同。 只要设置任何一阀值到10000:
//... onimagechange(event) { let image = event.target.files[0]; this.ng2imgmax.resizeimage(image,10000,300).subscribe(result=> { this.uploadedimage = new file([result],result.name); }, error=> { console.log('error:',error); }); }
压缩代替resizing
您还可以使用compress或compressimage方法执行有损压缩,而不是调整图像大小。 只需传递最大值(兆字节)。 你显然想要运行一些测试,看看你想要走多远的几个小时,同时保持图像看起来很好。
在以下示例中,我们将生成的图像限制为大约75kb:
onimagechange(event) { let image = event.target.files[0]; this.ng2imgmax.compressimage(image, 0.075).subscribe( result => { this.uploadedimage = new file([result], result.name); this.getimagepreview(this.uploadedimage); }, error => { console.log('???? oh no!', error); } ); }
图片预览
您可能想要预览要上传到用户的图像。 您可以使用filereader对象执行此操作。 您还需要使用angular的domsanitizer来使其信任使用filereader对象创建的base64编码数据uri:
现在,我们的组件内容是这样的。组件中有趣的新方法是getimagepreview:
//: app.component.ts import { component } from '@angular/core'; import { ng2imgmaxservice } from 'ng2-img-max'; import { domsanitizer } from '@angular/platform-browser'; @component({ ... }) export class appcomponent { uploadedimage: file; imagepreview: string; constructor( private ng2imgmax: ng2imgmaxservice, public sanitizer: domsanitizer ) {} onimagechange(event) { let image = event.target.files[0]; this.ng2imgmax.resizeimage(image, 10000, 375).subscribe( result => { this.uploadedimage = new file([result], result.name); this.getimagepreview(this.uploadedimage); }, error => { console.log('???? oh no!', error); } ); } getimagepreview(file: file) { const reader: filereader = new filereader(); reader.readasdataurl(file); reader.onload = () => { this.imagepreview = reader.result; }; } }
在我们的模板中,我们可以使用sanitizer来显示如图像:
//: app.component.html <img *ngif="imagepreview" [src]="sanitizer.bypasssecuritytrusturl(imagepreview)">
这就是它的全部! 您还可以查看同一作者的ng2-img-tools包,以获得更多的浏览器端图像处理(如裁剪)。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。