国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

解決圖片顯示 Exif.js更改圖片的顯示方向

shadowbook / 3125人閱讀

摘要:沒(méi)什么文字直接上代碼這是一個(gè)解決更改脫方向的一個(gè)文件應(yīng)用前先或者直接引入調(diào)用方法引入轉(zhuǎn)換的主體方法圖片的方向返回的值去獲取拍照時(shí)的信息,解決拍出來(lái)的照片旋轉(zhuǎn)問(wèn)題看支持不支持看支持不支持創(chuàng)建一個(gè)將圖片將轉(zhuǎn)成格式讀取成功后的回調(diào)判斷圖

沒(méi)什么文字直接上代碼
//這是一個(gè)解決exif更改脫方向的一個(gè)js文件
// 應(yīng)用前先npm install exif-js --save或者直接引入exif-js

//// 調(diào)用方法
// let baseData;
// imgExif(file,function (base){
//   baseData=base
// });

import Exif from "exif-js" //引入exif

let u = {};
// 轉(zhuǎn)換的主體方法
u.index = (file, callback) => {
  let Orientation, resultData; //圖片的方向,返回的值
  //去獲取拍照時(shí)的信息,解決拍出來(lái)的照片旋轉(zhuǎn)問(wèn)題
  Exif.getData(file, function () {
    Orientation = Exif.getTag(this, "Orientation");
  });
  // 看支持不支持FileReader
  if (!file || !window.FileReader) return;

  // 看支持不支持FileReader
  if (!file || !window.FileReader) return;

  if (/^image/.test(file.type)) {
    // 創(chuàng)建一個(gè)reader
    let reader = new FileReader();
    // 將圖片2將轉(zhuǎn)成 base64 格式
    reader.readAsDataURL(file);
    // 讀取成功后的回調(diào)
    reader.onloadend = function () {
      let result = this.result;
      //判斷圖片是否有方向值沒(méi)有直接返回base64
      if (!Orientation) {
        callback(result);
      } else {
        let img = new Image();
        img.src = result;
        //圖片信息加載完轉(zhuǎn)換方向
        img.onload = function () {
          resultData = u.compress(img, Orientation);
          callback(resultData);
        }
      }
    }
  }
};

//更改旋轉(zhuǎn)方向
u.compress = (img, Orientation) => {
  let canvas = document.createElement("canvas"), ctx = canvas.getContext("2d"),
    tCanvas = document.createElement("canvas"), tctx = tCanvas.getContext("2d"), initSize = img.src.length,
    width = img.width, height = img.height, ratio = 1;  //聲明
  canvas.width = width;
  canvas.height = height;
  // 鋪底色
  ctx.fillStyle = "#fff";
  ctx.fillRect(0, 0, canvas.width, canvas.height);
  //如果圖片像素大于100萬(wàn)則使用瓦片繪制
  let count;
  if ((count = width * height / 1000000) > 1) {
    // console.log("超過(guò)100W像素");
    count = ~~(Math.sqrt(count) + 1); //計(jì)算要分成多少塊瓦片
    //            計(jì)算每塊瓦片的寬和高
    let nw = ~~(width / count);
    let nh = ~~(height / count);
    tCanvas.width = nw;
    tCanvas.height = nh;
    for (let i = 0; i < count; i++) {
      for (let j = 0; j < count; j++) {
        tctx.drawImage(img, i * nw * ratio, j * nh * ratio, nw * ratio, nh * ratio, 0, 0, nw, nh);
        ctx.drawImage(tCanvas, i * nw, j * nh, nw, nh);
      }
    }
  } else {
    ctx.drawImage(img, 0, 0, width, height);
  }
  //修復(fù)上傳圖片的時(shí)候被旋轉(zhuǎn)的問(wèn)題
  if (Orientation != "" && Orientation != 1) {
    switch (Orientation) {
      case 6://需要順時(shí)針(向左)90度旋轉(zhuǎn)
        u.rotateImg(img, "left", canvas);
        break;
      case 8://需要逆時(shí)針(向右)90度旋轉(zhuǎn)
        u.rotateImg(img, "right", canvas);
        break;
      case 3://需要180度旋轉(zhuǎn)
        u.rotateImg(img, "right", canvas, 2);//轉(zhuǎn)兩次
        break;
    }
  }
  //進(jìn)行最小壓縮
  let ndata = canvas.toDataURL("image/jpeg", 1);
  tCanvas.width = tCanvas.height = canvas.width = canvas.height = 0;
  return ndata;
};

//更改旋轉(zhuǎn)方向
u.rotateImg = (img, direction, canvas, num) => {
  //最小與最大旋轉(zhuǎn)方向,圖片旋轉(zhuǎn)4次后回到原方向
  const min_step = 0;
  const max_step = 3;
  if (img == null) return;
  //img的高度和寬度不能在img元素隱藏后獲取,否則會(huì)出錯(cuò)
  let height = img.height;
  let width = img.width;
  let step = 2;
  if (step == null) {
    step = min_step;
  }
  if (direction == "right") {
    step++;
    //旋轉(zhuǎn)到原位置,即超過(guò)最大值
    step > max_step && (step = min_step);
  } else {
    step--;
    step < min_step && (step = max_step);
  }
  //旋轉(zhuǎn)180度
  step = num ? num : step;

  //旋轉(zhuǎn)角度以弧度值為參數(shù)
  let degree = step * 90 * Math.PI / 180;

  let ctx = canvas.getContext("2d");
  switch (step) {
    case 0:
      canvas.width = width;
      canvas.height = height;
      ctx.drawImage(img, 0, 0);
      break;
    case 1:
      canvas.width = height;
      canvas.height = width;
      ctx.rotate(degree);
      ctx.drawImage(img, 0, -height);
      break;
    case 2:
      canvas.width = width;
      canvas.height = height;
      ctx.rotate(degree);
      ctx.drawImage(img, -width, -height);
      break;
    case 3:
      canvas.width = height;
      canvas.height = width;
      ctx.rotate(degree);
      ctx.drawImage(img, -width, 0);
      break;
  }
};
window.imgExif = u;

要是后臺(tái)需要的是file用這個(gè)轉(zhuǎn)換一下就可以了

//將base64轉(zhuǎn)換為img文件
u.compress = (img, Orientation) => {
  let arr = dataurl.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 File([u8arr], filename, {type: mime});
};

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://m.specialneedsforspecialkids.com/yun/53551.html

相關(guān)文章

  • 解決圖片顯示 Exif.js更改圖片顯示方向

    摘要:沒(méi)什么文字直接上代碼這是一個(gè)解決更改脫方向的一個(gè)文件應(yīng)用前先或者直接引入調(diào)用方法引入轉(zhuǎn)換的主體方法圖片的方向返回的值去獲取拍照時(shí)的信息,解決拍出來(lái)的照片旋轉(zhuǎn)問(wèn)題看支持不支持看支持不支持創(chuàng)建一個(gè)將圖片將轉(zhuǎn)成格式讀取成功后的回調(diào)判斷圖 沒(méi)什么文字直接上代碼 //這是一個(gè)解決exif更改脫方向的一個(gè)js文件 // 應(yīng)用前先npm install exif-js --save或者直接引入ex...

    mgckid 評(píng)論0 收藏0
  • 移動(dòng)端圖片上傳旋轉(zhuǎn)、壓縮解決方案

    摘要:上傳的文件經(jīng)過(guò)就可以實(shí)現(xiàn)預(yù)覽圖片了,這方面不清楚的可以查看進(jìn)階系列文件上傳下載旋轉(zhuǎn)旋轉(zhuǎn)需要用到的方法。 前言 在手機(jī)上通過(guò)網(wǎng)頁(yè) input 標(biāo)簽拍照上傳圖片,有一些手機(jī)會(huì)出現(xiàn)圖片旋轉(zhuǎn)了90度d的問(wèn)題,包括 iPhone 和個(gè)別三星手機(jī)。這些手機(jī)豎著拍的時(shí)候才會(huì)出現(xiàn)這種問(wèn)題,橫拍出來(lái)的照片就正常顯示。因此,可以通過(guò)獲取手機(jī)拍照角度來(lái)對(duì)照片進(jìn)行旋轉(zhuǎn),從而解決這個(gè)問(wèn)題。 Orientatio...

    blair 評(píng)論0 收藏0
  • iphone手機(jī)html5上傳圖片方向問(wèn)題解決

    摘要:用編寫(xiě)圖片裁切上傳,在手機(jī)上可能會(huì)遇到圖片方向錯(cuò)誤問(wèn)題,在此把解決方法和大家分享一下,用到了的和,如果還沒(méi)有接觸的同學(xué),先了解一下其方法。 用html5編寫(xiě)圖片裁切上傳,在iphone手機(jī)上可能會(huì)遇到圖片方向錯(cuò)誤問(wèn)題,在此把解決方法和大家分享一下,用到了html5的 FileReader和Canvas,如果還沒(méi)有接觸的同學(xué),先了解一下其方法。 //此方法為file input元素的c...

    golden_hamster 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

閱讀需要支付1元查看
<