|
@@ -1,11 +1,11 @@
|
|
|
|
|
|
import axios from "axios";
|
|
|
import { showToast } from "vant";
|
|
|
-import {ref} from 'vue'
|
|
|
-
|
|
|
+import { ref } from "vue";
|
|
|
+import { PDFDocument } from "pdf-lib";
|
|
|
|
|
|
|
|
|
- *
|
|
|
+ * 下载文件
|
|
|
* @returns {
|
|
|
* progress 下载进度
|
|
|
* fileSize 文件大小
|
|
@@ -13,63 +13,291 @@ import {ref} from 'vue'
|
|
|
* cancelDownload 取消下载
|
|
|
* }
|
|
|
*/
|
|
|
-export function useDownLoadFile(){
|
|
|
- let progress=ref(0)
|
|
|
- let fileSize=ref(0)
|
|
|
-
|
|
|
- const controller = new AbortController();
|
|
|
-
|
|
|
-
|
|
|
- const startDownload=(url,filename)=>{
|
|
|
- axios({
|
|
|
- url:url,
|
|
|
- method:'get',
|
|
|
- responseType:'blob',
|
|
|
- signal: controller.signal,
|
|
|
- onDownloadProgress:function(progressEvent){
|
|
|
-
|
|
|
- fileSize.value=Math.floor(progressEvent.total/1024/1024)
|
|
|
- progress.value = Math.floor(progressEvent.progress*100)
|
|
|
- }
|
|
|
- }).then(res=>{
|
|
|
-
|
|
|
- const {status,data}=res
|
|
|
- if(status!=200){
|
|
|
- showToast('下载失败')
|
|
|
- return
|
|
|
- }
|
|
|
- const content = data
|
|
|
- const blob = new Blob([content])
|
|
|
- if ('download' in document.createElement('a')) {
|
|
|
- const elink = document.createElement('a')
|
|
|
- elink.download = filename || url.split('/')[url.split('/').length - 1]
|
|
|
- elink.style.display = 'none'
|
|
|
- elink.href = window.URL.createObjectURL(blob)
|
|
|
- document.body.appendChild(elink)
|
|
|
- elink.click()
|
|
|
- window.URL.revokeObjectURL(elink.href)
|
|
|
- document.body.removeChild(elink)
|
|
|
- } else {
|
|
|
- navigator.msSaveBlob(blob, filename)
|
|
|
+export function useDownLoadFile() {
|
|
|
+ let progress = ref(0);
|
|
|
+ let fileSize = ref(0);
|
|
|
+
|
|
|
+ const controller = new AbortController();
|
|
|
+
|
|
|
+
|
|
|
+ const startDownload = (url, filename) => {
|
|
|
+ axios({
|
|
|
+ url: url,
|
|
|
+ method: "get",
|
|
|
+ responseType: "blob",
|
|
|
+ signal: controller.signal,
|
|
|
+ onDownloadProgress: function (progressEvent) {
|
|
|
+
|
|
|
+ fileSize.value = Math.floor(progressEvent.total / 1024 / 1024);
|
|
|
+ progress.value = Math.floor(progressEvent.progress * 100);
|
|
|
+ },
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+
|
|
|
+ const { status, data } = res;
|
|
|
+ if (status != 200) {
|
|
|
+ showToast("下载失败");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ const content = data;
|
|
|
+ const blob = new Blob([content]);
|
|
|
+ if ("download" in document.createElement("a")) {
|
|
|
+ const elink = document.createElement("a");
|
|
|
+ elink.download = filename || url.split("/")[url.split("/").length - 1];
|
|
|
+ elink.style.display = "none";
|
|
|
+ elink.href = window.URL.createObjectURL(blob);
|
|
|
+ document.body.appendChild(elink);
|
|
|
+ elink.click();
|
|
|
+ window.URL.revokeObjectURL(elink.href);
|
|
|
+ document.body.removeChild(elink);
|
|
|
+ } else {
|
|
|
+ navigator.msSaveBlob(blob, filename);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch((e) => {
|
|
|
+ console.log(e);
|
|
|
+ showToast("下载失败");
|
|
|
+ });
|
|
|
+ };
|
|
|
+
|
|
|
+
|
|
|
+ const cancelDownload = () => {
|
|
|
+
|
|
|
+ controller.abort();
|
|
|
+ progress.value = 0;
|
|
|
+ fileSize.value = 0;
|
|
|
+ };
|
|
|
+
|
|
|
+ return {
|
|
|
+ fileSize,
|
|
|
+ progress,
|
|
|
+ startDownload,
|
|
|
+ cancelDownload,
|
|
|
+ };
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+ * 下载文件加水印
|
|
|
+ */
|
|
|
+export function useDownLoadFileAddWaterMark() {
|
|
|
+ let progress = ref(0);
|
|
|
+ let fileSize = ref(0);
|
|
|
+
|
|
|
+ const controller = new AbortController();
|
|
|
+
|
|
|
+
|
|
|
+ function getWaterMark(str) {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ const text = str || "";
|
|
|
+ const canvas = document.createElement("canvas");
|
|
|
+
|
|
|
+
|
|
|
+ const canvasWidth = 800;
|
|
|
+ const canvasHeight = 400;
|
|
|
+ canvas.width = canvasWidth;
|
|
|
+ canvas.height = canvasHeight;
|
|
|
+
|
|
|
+ const ctx = canvas.getContext("2d");
|
|
|
+
|
|
|
+
|
|
|
+ ctx.font = "50px Arial";
|
|
|
+ ctx.textAlign = "center";
|
|
|
+ ctx.textBaseline = "middle";
|
|
|
+ ctx.fillStyle = "#333";
|
|
|
+ ctx.globalAlpha = 0.1;
|
|
|
+
|
|
|
+ ctx.translate(canvasWidth / 2, canvasHeight / 2);
|
|
|
+ ctx.rotate((-45 * Math.PI) / 200);
|
|
|
+ ctx.fillText(text, 0, 0);
|
|
|
+
|
|
|
+
|
|
|
+ const data = canvas.toDataURL("image/png");
|
|
|
+ resolve(data);
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ function blobToArrayBuffer(blob) {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ const reader = new FileReader();
|
|
|
+ reader.onload = () => resolve(reader.result);
|
|
|
+ reader.onerror = (error) => reject(error);
|
|
|
+ reader.readAsArrayBuffer(blob);
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * 开始下载
|
|
|
+ * @param type pdf img
|
|
|
+ * @returns
|
|
|
+ */
|
|
|
+ const startDownload = async ({ url, filename, waterMark, type }) => {
|
|
|
+ try {
|
|
|
+ const res = await axios({
|
|
|
+ url: url,
|
|
|
+ method: "get",
|
|
|
+ responseType: "blob",
|
|
|
+ signal: controller.signal,
|
|
|
+ onDownloadProgress: function (progressEvent) {
|
|
|
+
|
|
|
+ fileSize.value = Math.floor(progressEvent.total / 1024 / 1024);
|
|
|
+ progress.value = Math.floor(progressEvent.progress * 100);
|
|
|
+ },
|
|
|
+ });
|
|
|
+
|
|
|
+ const { status, data } = res;
|
|
|
+ if (status != 200) {
|
|
|
+ showToast("下载失败");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ const blob = new Blob([data]);
|
|
|
+
|
|
|
+ if (!waterMark) {
|
|
|
+ if ("download" in document.createElement("a")) {
|
|
|
+ const elink = document.createElement("a");
|
|
|
+ elink.download = filename || url.split("/")[url.split("/").length - 1];
|
|
|
+ elink.style.display = "none";
|
|
|
+ elink.href = window.URL.createObjectURL(blob);
|
|
|
+ document.body.appendChild(elink);
|
|
|
+ elink.click();
|
|
|
+ window.URL.revokeObjectURL(elink.href);
|
|
|
+ document.body.removeChild(elink);
|
|
|
+ } else {
|
|
|
+ navigator.msSaveBlob(blob, filename);
|
|
|
+ }
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (type === "pdf") {
|
|
|
+
|
|
|
+ const pdfBytes = await blobToArrayBuffer(blob);
|
|
|
+ const pdfDoc = await PDFDocument.load(pdfBytes);
|
|
|
+ const pages = pdfDoc.getPages();
|
|
|
+
|
|
|
+
|
|
|
+ const watermarkImageData = await getWaterMark(waterMark);
|
|
|
+ const watermarkImage = await pdfDoc.embedPng(watermarkImageData);
|
|
|
+
|
|
|
+ pages.forEach(page => {
|
|
|
+ const { width, height } = page.getSize();
|
|
|
+
|
|
|
+
|
|
|
+ const imageWidth = width / 5;
|
|
|
+ const imageHeight = watermarkImage.height * (imageWidth / watermarkImage.width);
|
|
|
+
|
|
|
+
|
|
|
+ const opacity = 1;
|
|
|
+
|
|
|
+
|
|
|
+ const cols = Math.ceil(width / imageWidth);
|
|
|
+ const rows = Math.ceil(height / imageHeight);
|
|
|
+
|
|
|
+
|
|
|
+ for (let row = 0; row < rows; row++) {
|
|
|
+ for (let col = 0; col < cols; col++) {
|
|
|
+ const x = col * imageWidth;
|
|
|
+ const y = row * imageHeight;
|
|
|
+
|
|
|
+ page.drawImage(watermarkImage, {
|
|
|
+ x: x,
|
|
|
+ y: y,
|
|
|
+ width: imageWidth,
|
|
|
+ height: imageHeight,
|
|
|
+ opacity: opacity,
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+ const modifiedPdfBytes = await pdfDoc.save();
|
|
|
+ const blobRes = new Blob([modifiedPdfBytes], { type: 'application/pdf' });
|
|
|
+ if ('download' in document.createElement('a')) {
|
|
|
+ const elink = document.createElement('a');
|
|
|
+ elink.download = filename || url.split("/")[url.split("/").length - 1];
|
|
|
+ elink.style.display = 'none';
|
|
|
+ elink.href = window.URL.createObjectURL(blobRes);
|
|
|
+ document.body.appendChild(elink);
|
|
|
+ elink.click();
|
|
|
+ window.URL.revokeObjectURL(elink.href);
|
|
|
+ document.body.removeChild(elink);
|
|
|
+ } else {
|
|
|
+ navigator.msSaveBlob(blobRes, filename);
|
|
|
+ }
|
|
|
+
|
|
|
+ } else if (type === "img") {
|
|
|
+
|
|
|
+ const img = new Image();
|
|
|
+ img.src = URL.createObjectURL(blob);
|
|
|
+
|
|
|
+ img.onload = async () => {
|
|
|
+
|
|
|
+ const canvas = document.createElement("canvas");
|
|
|
+ const ctx = canvas.getContext("2d");
|
|
|
+ canvas.width = img.width;
|
|
|
+ canvas.height = img.height;
|
|
|
+
|
|
|
+
|
|
|
+ ctx.drawImage(img, 0, 0, img.width, img.height);
|
|
|
+
|
|
|
+
|
|
|
+ const watermarkImageData = await getWaterMark(waterMark);
|
|
|
+ const watermarkImg = new Image();
|
|
|
+ watermarkImg.src = watermarkImageData;
|
|
|
+
|
|
|
+ watermarkImg.onload = () => {
|
|
|
+ const watermarkWidth = img.width / 5;
|
|
|
+ const watermarkHeight = (watermarkImg.height / watermarkImg.width) * watermarkWidth;
|
|
|
+
|
|
|
+
|
|
|
+ const cols = Math.ceil(img.width / watermarkWidth);
|
|
|
+ const rows = Math.ceil(img.height / watermarkHeight);
|
|
|
+
|
|
|
+
|
|
|
+ for (let row = 0; row < rows; row++) {
|
|
|
+ for (let col = 0; col < cols; col++) {
|
|
|
+ const x = col * watermarkWidth;
|
|
|
+ const y = row * watermarkHeight;
|
|
|
+ ctx.drawImage(watermarkImg, x, y, watermarkWidth, watermarkHeight);
|
|
|
+ }
|
|
|
}
|
|
|
- }).catch((e)=>{
|
|
|
- console.log(e);
|
|
|
- showToast('下载失败')
|
|
|
- })
|
|
|
- }
|
|
|
|
|
|
-
|
|
|
- const cancelDownload=()=>{
|
|
|
-
|
|
|
- controller.abort()
|
|
|
- progress.value=0
|
|
|
- fileSize.value=0
|
|
|
+
|
|
|
+ canvas.toBlob((modifiedBlob) => {
|
|
|
+ const blobRes = modifiedBlob;
|
|
|
+ if ("download" in document.createElement("a")) {
|
|
|
+ const elink = document.createElement("a");
|
|
|
+ elink.download = filename || url.split("/")[url.split("/").length - 1];
|
|
|
+ elink.style.display = "none";
|
|
|
+ elink.href = window.URL.createObjectURL(blobRes);
|
|
|
+ document.body.appendChild(elink);
|
|
|
+ elink.click();
|
|
|
+ window.URL.revokeObjectURL(elink.href);
|
|
|
+ document.body.removeChild(elink);
|
|
|
+ } else {
|
|
|
+ navigator.msSaveBlob(blobRes, filename);
|
|
|
+ }
|
|
|
+ }, "image/png");
|
|
|
+ };
|
|
|
+ };
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ showToast("下载失败,请稍后重试");
|
|
|
}
|
|
|
+ };
|
|
|
|
|
|
- return {
|
|
|
- fileSize,
|
|
|
- progress,
|
|
|
- startDownload,
|
|
|
- cancelDownload
|
|
|
- }
|
|
|
-}
|
|
|
+
|
|
|
+ const cancelDownload = () => {
|
|
|
+
|
|
|
+ controller.abort();
|
|
|
+ progress.value = 0;
|
|
|
+ fileSize.value = 0;
|
|
|
+ };
|
|
|
+
|
|
|
+ return {
|
|
|
+ fileSize,
|
|
|
+ progress,
|
|
|
+ startDownload,
|
|
|
+ cancelDownload,
|
|
|
+ };
|
|
|
+}
|