欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

vue圖片裁剪插件vue-cropper使用方法詳解

 更新時(shí)間:2020年12月16日 09:47:21   作者:Dreamer_xr  
這篇文章主要為大家詳細(xì)介紹了vue圖片裁剪插件vue-cropper使用方法,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了vue圖片裁剪插件vue-cropper的使用方法,供大家參考,具體內(nèi)容如下

我在網(wǎng)上找了很多關(guān)于vue裁剪圖片的文章,demo都太長(zhǎng)了,實(shí)在是太長(zhǎng)了。有些還都看不懂,最后還是用了個(gè)大佬的demo,但是項(xiàng)目實(shí)踐過程中還是有問題沒解決。先介紹吧。效果是下面這樣的,

我這里采用了4:3的固定比例進(jìn)行裁剪,裁剪后的效果

但是裁剪后的圖片路徑是base64,超級(jí)長(zhǎng)的路徑,最終還是需要處理地址傳給后端的,項(xiàng)目用oss處理圖片,最終獲得一個(gè)類似于aad68a8fd577464dbcdead2e9b20084d這個(gè)的后綴傳給后端,base64的路徑有幾萬(wàn)幾十萬(wàn)個(gè)字符,傳給后端會(huì)炸的吧。

后來我通過oss進(jìn)行處理,把base64的路徑地址變成通過oss解析過的地址,但是!解析過的地址讓我下載,下載的文件不是圖片格式,記事本打開文件里面還是base64的路徑,復(fù)制粘貼,沒錯(cuò),是裁剪之后的圖片,這個(gè)問題暫時(shí)還沒有解決,解決之后進(jìn)行再回來修改。先附上代碼吧。這里代碼是比較全的,圖片地址解析那一部分可以不用。

以上問題以解決,base64轉(zhuǎn)成blob格式就可以處理了,oss上傳需要使用new Blob格式(2019/6/22更新)

另外附上文檔

裁剪的vue文件:(已更新)

先下載npm install vue-cropper --save

<!-- 裁剪圖片 -->
<template>
 <div class="wrapper">
 <div class="model" v-show="model" @click="model = false">
  <div class="model-show">
  <img :src="modelSrc" alt="">
  </div>
 </div>
 <div class="content">
 
  <div class="show-info">
  <h2>自動(dòng)生成截圖框 固定比例 w : h => 4 : 3</h2>
  <div class="test">
   <vueCropper ref="cropper2" :img="example2.img " :outputSize="example2.size" :outputType="example2.outputType"
   :info="example2.info" :canScale="example2.canScale" :autoCrop="example2.autoCrop"
   :autoCropWidth="example2.autoCropWidth" :autoCropHeight="example2.autoCropHeight" :fixed="example2.fixed"
   :fixedNumber="example2.fixedNumber" :enlarge="4"></vueCropper>
  </div>
  <label class="btn" for="upload2">上傳</label>
  <input type="file" id="upload2" style="position:absolute; clip:rect(0 0 0 0);"
   accept="image/png, image/jpeg, image/gif, image/jpg" @change="uploadImg($event,2)">
  <button @click="finish2()" class="btn">裁剪</button>
  </div>
 </div>
 
 </div>
</template>
 
<script>
 import { VueCropper } from 'vue-cropper'
 import * as OSS from 'ali-oss';
 export default {
 components: {
  VueCropper,
 },
 data() {
  return {
  model: false,
  modelSrc: '',
  crap: false,
  previews: {},
  form: {
   head: ''
  },
  example2: {
   //img的路徑自行修改
   img: '$oss.url + \'/\' + form.head ',
   info: true,
   size: 1,
   outputType: 'jpeg',
   canScale: true,
   autoCrop: true,
   // 只有自動(dòng)截圖開啟 寬度高度才生效
   autoCropWidth: 300,
   autoCropHeight: 250,
   fixed: true,
   // 真實(shí)的輸出寬高
   infoTrue: true,
   fixedNumber: [4, 3]
  },
  downImg: '#'
  }
 },
 methods: {
  //點(diǎn)擊裁剪,這一步是可以拿到處理后的地址
  finish2() {
  this.$refs.cropper2.getCropData((data) => {
   this.modelSrc = data
   this.model = false;
   //裁剪后的圖片顯示
   this.example2.img = this.modelSrc;
   // this.toBlob(data)
   // console.log(data)
   // console.log(this.toBlob(data))
 
   //阿里云處理圖片,項(xiàng)目的接口,這里可以不用,上面的地址打印即為base64的地址
   this.$api.admin.url(data => {
   new OSS.Wrapper({
    region: "oss-cn-hangzhou",
    accessKeyId: data.accessKeyId,
    accessKeySecret: data.accessKeySecret,
    stsToken: data.securityToken,
    // bucket: 'mybg'c
    bucket: 'zhiyuan-hz'
   })
    .put(data.key, this.toBlob(this.example2.img))
    .then(data => {
    console.log(data.url)
    })
    .catch(function (err) {
    console.error("error: %j", err);
    });
   });
  })
 
  },
 
  uploadImg(e, num) {
  //上傳圖片
  this.example2.img = ''
  var file = e.target.files[0]
  if (!/\.(gif|jpg|jpeg|png|bmp|GIF|JPG|PNG)$/.test(e.target.value)) {
   alert('圖片類型必須是.gif,jpeg,jpg,png,bmp中的一種')
   return false
  }
  var reader = new FileReader()
  reader.onload = (e) => {
   let data
   data = e.target.result
   if (typeof e.target.result === 'object') {
   // 把Array Buffer轉(zhuǎn)化為blob 如果是base64不需要
   data = window.URL.createObjectURL(new Blob([e.target.result]))
   } else {
   data = e.target.result
   }
   if (num === 1) {
   this.option.img = data
   } else if (num === 2) {
   this.example2.img = data
   }
  }
  // 轉(zhuǎn)化為base64
  // reader.readAsDataURL(file)
  // 轉(zhuǎn)化為blobcs
  reader.readAsArrayBuffer(file)
  },
  // base64轉(zhuǎn)blob
  toBlob(ndata) {
  //ndata為base64格式地址
  console.log(ndata)
  let arr = ndata.split(','),
   mime = arr[0].match(/:(.*?);/)[1],
   bstr = atob(arr[1]),
   n = bstr.length,
   u8arr = new Uint8Array(n);
  while (n--) {
   u8arr[n] = bstr.charCodeAt(n);
  }
  return new Blob([u8arr], {
   type: mime
  })
  }
 },
 
 }
</script>
 
<style>
 * {
 margin: 0;
 padding: 0;
 }
 
 .content {
 margin: auto;
 max-width: 585px;
 margin-bottom: 100px;
 }
 
 .test-button {
 display: flex;
 flex-wrap: wrap;
 }
 
 .btn {
 display: inline-block;
 line-height: 1;
 white-space: nowrap;
 cursor: pointer;
 background: #fff;
 border: 1px solid #c0ccda;
 color: #1f2d3d;
 text-align: center;
 box-sizing: border-box;
 outline: none;
 margin: 20px 10px 0px 0px;
 padding: 9px 15px;
 font-size: 14px;
 border-radius: 4px;
 color: #fff;
 background-color: #50bfff;
 border-color: #50bfff;
 transition: all .2s ease;
 text-decoration: none;
 user-select: none;
 }
 
 .des {
 line-height: 30px;
 }
 
 code.language-html {
 padding: 10px 20px;
 margin: 10px 0px;
 display: block;
 background-color: #333;
 color: #fff;
 overflow-x: auto;
 font-family: Consolas, Monaco, Droid, Sans, Mono, Source, Code, Pro, Menlo, Lucida, Sans, Type, Writer, Ubuntu, Mono;
 border-radius: 5px;
 white-space: pre;
 }
 
 .show-info {
 margin-bottom: 50px;
 }
 
 .show-info h2 {
 line-height: 50px;
 }
 
 /*.title, .title:hover, .title-focus, .title:visited {
  color: black;
 }*/
 
 .title {
 display: block;
 text-decoration: none;
 text-align: center;
 line-height: 1.5;
 margin: 20px 0px;
 background-image: -webkit-linear-gradient(left, #3498db, #f47920 10%, #d71345 20%, #f7acbc 30%, #ffd400 40%, #3498db 50%, #f47920 60%, #d71345 70%, #f7acbc 80%, #ffd400 90%, #3498db);
 color: transparent;
 -webkit-background-clip: text;
 background-size: 200% 100%;
 animation: slide 5s infinite linear;
 font-size: 40px;
 }
 
 .test {
 height: 285px;
 }
 
 .model {
 position: fixed;
 z-index: 10;
 width: 100vw;
 height: 100vh;
 overflow: auto;
 top: 0;
 left: 0;
 background: rgba(0, 0, 0, 0.8);
 }
 
 .model-show {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100vw;
 height: 100vh;
 }
 
 .model img {
 display: block;
 margin: auto;
 max-width: 80%;
 user-select: none;
 background-position: 0px 0px, 10px 10px;
 background-size: 20px 20px;
 background-image: linear-gradient(45deg, #eee 25%, transparent 25%, transparent 75%, #eee 75%, #eee 100%), linear-gradient(45deg, #eee 25%, white 25%, white 75%, #eee 75%, #eee 100%);
 }
 
 .c-item {
 display: block;
 padding: 10px 0;
 user-select: none;
 }
 
 @keyframes slide {
 0% {
  background-position: 0 0;
 }
 
 100% {
  background-position: -100% 0;
 }
 }
 
 @media screen and (max-width: 1000px) {
 .content {
  max-width: 90%;
  margin: auto;
 }
 
 .test {
  height: 400px;
 }
 }
</style> 

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Vue自定義鈴聲提示音組件的實(shí)現(xiàn)

    Vue自定義鈴聲提示音組件的實(shí)現(xiàn)

    這篇文章主要介紹了Vue中自定義一個(gè)鈴聲提示音組件的實(shí)現(xiàn)以及使用方法,文中的示例代碼講解詳細(xì),對(duì)我們學(xué)習(xí)Vue有一定幫助,需要的可以參考一下
    2022-01-01
  • vue中的自定義屬性并獲得屬性的值方式

    vue中的自定義屬性并獲得屬性的值方式

    這篇文章主要介紹了vue中的自定義屬性并獲得屬性的值方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-06-06
  • vue debug 二種方法

    vue debug 二種方法

    這篇文章主要介紹了vue debug 二種方法,非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2018-09-09
  • Element el-table 表格使用詳解

    Element el-table 表格使用詳解

    我們的數(shù)據(jù)存儲(chǔ)到數(shù)據(jù)庫(kù),不就是以表格的形式存在嗎,所以在界面上顯示、操作,使用表格來處理也是非常合理的,這篇文章給大家介紹Element el-table 表格使用方法,感興趣的朋友一起看看吧
    2024-03-03
  • element多個(gè)表單校驗(yàn)的實(shí)現(xiàn)

    element多個(gè)表單校驗(yàn)的實(shí)現(xiàn)

    在項(xiàng)目中,經(jīng)常會(huì)遇到表單檢驗(yàn),在這里我分享在實(shí)際項(xiàng)目中遇到多個(gè)表單同時(shí)進(jìn)行校驗(yàn)以及我的解決方法,感興趣的可以了解一下
    2021-05-05
  • 關(guān)于element-ui中@selection-change執(zhí)行兩次的問題

    關(guān)于element-ui中@selection-change執(zhí)行兩次的問題

    這篇文章主要介紹了關(guān)于element-ui中@selection-change執(zhí)行兩次的問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-08-08
  • Vue關(guān)閉當(dāng)前彈窗頁(yè)面的兩種方式

    Vue關(guān)閉當(dāng)前彈窗頁(yè)面的兩種方式

    這篇文章主要給大家介紹了關(guān)于Vue關(guān)閉當(dāng)前彈窗頁(yè)面的兩種方式,這是最近項(xiàng)目中遇到的一個(gè)需求,文中通過實(shí)例代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2023-07-07
  • vue-dialog的彈出層組件

    vue-dialog的彈出層組件

    這篇文章主要為大家詳細(xì)介紹了vue-dialog的彈出層組件,可以通過npm引用的組件,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-03-03
  • 詳解Vue中的render:?h?=>?h(App)示例代碼

    詳解Vue中的render:?h?=>?h(App)示例代碼

    這篇文章主要介紹了Vue中的render:?h?=>?h(App),本文通過實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2023-09-09
  • vue實(shí)現(xiàn)書本翻頁(yè)動(dòng)畫效果實(shí)例詳解

    vue實(shí)現(xiàn)書本翻頁(yè)動(dòng)畫效果實(shí)例詳解

    這篇文章主要介紹了vue簡(jiǎn)單實(shí)現(xiàn)書本翻頁(yè)效果,需要的朋友可以參考下
    2022-04-04

最新評(píng)論