GoJS完整图像下载不仅仅是视口中的部分

问题描述 投票:1回答:1

我试图将图像下载为blob。但问题是只有图像部分被下载到视口中。我希望下载整个图像。

这是我正在使用的功能:

downloadER() {
    this.diagram.rebuildParts();
    const downloadCallback = (blob: any): void => {
      var url = window.URL.createObjectURL(blob);
      var reader = new FileReader();
      reader.onloadend = () => {
        var imageDataUrl = reader.result;
        var img = document.createElement("img");
        img.src = imageDataUrl; // For getting the height and width
        let pdf = new jspdf('p', 'mm', 'b2');
        var position = 0;
        pdf.setFontSize(20);
        pdf.text(breadcrumb, 250, 20, 'center');
        pdf.addImage(imageDataUrl, 'PNG', 0, 25, position, img.naturalWidth, img.naturalHeight);
        pdf.save(pdfTitle + ".pdf");
      };
      reader.readAsDataURL(blob);
    }
    let blob = this.diagram.makeImageData({ background: "white", returnType: "blob", callback: <any>downloadCallback});
  }

如何下载完整图像。

javascript angular image gojs
1个回答
0
投票

{ scale: 1 }添加到您的选项中,它将使用整个文档边界而不是视口中的内容。

© www.soinside.com 2019 - 2024. All rights reserved.