亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

html5如何解決在網頁長按保存圖片問題

發布時間:2022-03-18 11:52:43 來源:億速云 閱讀:624 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關html5如何解決在網頁長按保存圖片問題的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

下面是詳細的步驟:

1. html2canvas截屏

保存的圖片節點最好是img標簽: 想要截屏的節點最好是img標簽的圖片,經測試如果是 background-image 會有點模糊,需要特別注意下。

npm i html2canvas --save
import html2canvas from 'html2canvas';
// 想要保存的圖片節點
const dom = document.querySelector('img');
// 創建一個新的canvas
const Canvas = document.createElement('canvas');
const width = document.body.offsetWidth;  // 可見屏幕的寬
const height = document.body.offsetHeight;  // 可見屏幕的高
const scale = window.devicePixelRadio;  // 設備的devicePixelRadio
// 將Canvas畫布放大scale倍,然后放在小的屏幕里,解決模糊問題
Canvas.width = width * scale;
Canvas.height = height * scale;
Canvas.getContext('2d').scale(scale, scale);
html2canvas(dom, {
  canvas: Canvas,
  scale,
  useCORS: true,
  logging: true,
  width: width + 'px',
  hegiht: height + 'px',
}).then((canvas) => {
  const context = canvas.getContext('2d');
  // 關閉抗鋸齒形
  context.mozImageSmoothingEnabled = false;
  context.webkitImageSmoothingEnabled = false;
  context.msImageSmoothingEnabled = false;
  context.imageSmoothingEnabled = false;
  // canvas轉化為圖片
  canvas2Image(canvas, canvas.width, canvas.height);
});

2. canvas2Image轉化為圖片

一般情況下轉為jpeg格式就很不錯了。

canvas2Image(canvas, canvas.width, canvas.height) {
  const retCanvas = document.createElement('canvas');
  const retCtx = retCanvas.getContext('2d');
  retCanvas.width = width;
  retCanvas.height = height;
  retCtx.drawImage(canvas, 0, 0, width, height, 0, 0, width, height);
  const img = document.createElement('img');
  img.src = retCanvas.toDataURL('image/jpeg');  // 可以根據需要更改格式
  return img;
}

3. 長按保存圖片

先實現一個長按的方法,長按之后把生成的圖片append到body,透明浮在屏幕上。

// 封裝一個長按方法
longPress(fn) {
  let timeout = 0;
  const $this = this;
  for (let i = 0; i < $this.length; i++) {
    $this[i].addEventListener('touchstart', () => {
      timeout = setTimeout(fn, 800); // 長按時間超過800ms,則執行傳入的方法 
    }, false);
    $this[i].addEventListener('touchend', () => {
      clearTimeout(timeout); // 長按時間少于800ms,不會執行傳入的方法
    }, false);
  }
}
// 添加生成的圖片到body
const img = canvas2Image(canvas, canvas.width, canvas.height);
document.body.appendChild(img);
img.style.cssText = "width:100%;height:100%;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;";

4. 完整代碼如下:

$.fn.longPress = function(fn) {
  let timeout = 0;
  const $this = this;
  for (let i = 0; i < $this.length; i++) {
    $this[i].addEventListener('touchstart', () => {
      timeout = setTimeout(fn, 800); // 長按時間超過800ms,則執行傳入的方法 
    }, false);
    $this[i].addEventListener('touchend', () => {
      clearTimeout(timeout); // 長按時間少于800ms,不會執行傳入的方法
    }, false);
  }
};
$('img').longPress(() => {
  saveImg();
});saveImg() {
  // 想要保存的圖片節點
  const dom = document.querySelector('img');
  // 創建一個新的canvas
  const Canvas = document.createElement('canvas');
  const width = document.body.offsetWidth;  // 可見屏幕的寬
  const height = document.body.offsetHeight;  // 可見屏幕的高
  const scale = window.devicePixelRatio;  // 設備的devicePixelRatio
  // 將Canvas畫布放大scale倍,然后放在小的屏幕里,解決模糊問題
  Canvas.width = width * scale;
  Canvas.height = height * scale;
  Canvas.getContext('2d').scale(scale, scale);
  html2canvas(dom, {
    canvas: Canvas,
    scale,
    useCORS: true,
    logging: true,
    width: width + 'px',
    hegiht: height + 'px',
  }).then((canvas) => {
    const context = canvas.getContext('2d');
    // 關閉抗鋸齒形
    context.mozImageSmoothingEnabled = false;
    context.webkitImageSmoothingEnabled = false;
    context.msImageSmoothingEnabled = false;
    context.imageSmoothingEnabled = false;
    // canvas轉化為圖片
    const img = canvas2Image(canvas, canvas.width, canvas.height);
    document.body.appendChild(img);
    img.style.cssText = "width:100%;height:100%;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;";
  }
}
canvas2Image(canvas, width, height) {
  const retCanvas = document.createElement('canvas');
  const retCtx = retCanvas.getContext('2d');
  retCanvas.width = width;
  retCanvas.height = height;
  retCtx.drawImage(canvas, 0, 0, width, height, 0, 0, width, height);
  const img = document.createElement('img');
  img.src = retCanvas.toDataURL('image/jpeg');  // 可以根據需要更改格式
  return img;
}

感謝各位的閱讀!關于“html5如何解決在網頁長按保存圖片問題”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

罗平县| 蚌埠市| 达拉特旗| 连城县| 左权县| 高淳县| 昆山市| 高安市| 兴城市| 吉木萨尔县| 宝应县| 琼中| 祁阳县| 昆山市| 定结县| 华安县| 洛浦县| 青阳县| 贵州省| 南和县| 祁门县| 东兴市| 黄龙县| 台北市| 台安县| 辽阳县| 桓台县| 禹城市| 双鸭山市| 内乡县| 枞阳县| 宝坻区| 同仁县| 定日县| 那坡县| 舟山市| 闸北区| 桐城市| 崇礼县| 文昌市| 太仓市|