溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

詳細(xì)AngularJs4的圖片剪裁組件的實例

發(fā)布時間:2020-09-07 15:41:25 來源:腳本之家 閱讀:152 作者:砂糖葫蘆娃 欄目:web開發(fā)

本文介紹了AngularJs4的圖片剪裁組件,下面我來記錄一下,有需要了解AngularJs4的圖片剪裁組件的朋友可參考。希望此文章對各位有所幫助。

jQuery里有一個強(qiáng)大的圖片剪裁插件,叫cropper.js。這是大神的GitHub地址:https://github.com/fengyuanchen/cropper

首先想在全是ts文件的angular里運用jquery的js代碼插件,這時候需要一個東西,他叫橋接文件。npm是一個強(qiáng)大的庫,已經(jīng)有前人在里面封裝了cropper以及所有你能想到想不到的插件,你需要做的只是安裝上就好了。需要在webstorm的Terminal里敲npm install cropperJs 這樣在node_modules文件夾里就會出現(xiàn)cropperjs的文件。有一個@types的文件夾,里面放著你需要用到相對應(yīng)js插件的ts橋接文件。在Terminal里敲npm install @types/cropperjs

忘了說 在@types下有一個叫index.d.ts的文件,里面有示例:https://github.com/DefinitelyTyped/DefinitelyTyped,在types下搜cropper,有個文件cropperjs-tests.ts,就能看到一個例子,長這樣:

import * as Cropper from 'cropperjs';

var image = <HTMLImageElement>document.getElementById('image');
var cropper = new Cropper(image, {
 aspectRatio: 16 / 9,
 crop: function(e) {
  console.log(e.detail.x);
  console.log(e.detail.y);
  console.log(e.detail.width);
  console.log(e.detail.height);
  console.log(e.detail.rotate);
  console.log(e.detail.scaleX);
  console.log(e.detail.scaleY);
 }
});

接下來就可以寫代碼啦啦啦啦~~

創(chuàng)建一個component

import {Component, Input, AfterViewInit, ViewEncapsulation} from '@angular/core';
import * as Cropper from 'cropperjs';

@Component({
 selector: 'cropper',
 templateUrl: './cropper.component.html',
 styleUrls: ['./cropper.component.less'],
 encapsulation: ViewEncapsulation.None
})

import * as Cropper from 'cropperjs';這個是引用cropper的方式。

encapsulation: ViewEncapsulation.None 因為angular會封裝自己的樣式,導(dǎo)致自己在less文件里寫的樣式不生效,這句的意義在于,不讓angular生效自己封裝的樣式。

想要實現(xiàn)點擊一個按鈕,彈出一個框讓你選圖片,需要做的是寫一個change事件,獲取到選中圖片的路徑,然后運用cropper里的替換路徑的replace方法,就能完成換圖片顯示了。

 <input type="file" accept="image/jpeg" (change)="getImgUrl($event)">
 getImgUrl($event) {
  this.cropper.replace(window.URL.createObjectURL($event.path[0].files[0])) ;
  console.log($event);
 }

$event 是整個事件對象。

接下來就可以添加自己需要的功能了,比如說向右旋轉(zhuǎn)90度。

<button (click)="rotateRight()">rotate</button>
 rotateRight() {
  console.log(this.cropper.getData());
  this.cropper.rotate(90);
 }

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI