中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

新巴尔虎右旗| 孙吴县| 阜新市| 潜山县| 开封市| 丹巴县| 长子县| 义马市| 滁州市| 金昌市| 福安市| 宿州市| 青龙| 文昌市| 常德市| 溧阳市| 大同市| 横山县| 山东省| 咸阳市| 高邑县| 汕尾市| 德昌县| 沛县| 黑龙江省| 陈巴尔虎旗| 个旧市| 左贡县| 温州市| 乌兰察布市| 兰坪| 乐山市| 河南省| 襄汾县| 宣化县| 上林县| 肥东县| 本溪市| 沙河市| 沽源县| 宁强县|