Search code examples
javascriptmathpositioningjspdfhtml2canvas

How to fit an image in the center of a page using jsPDF?


Using html2canvas & jsPDF, I'm trying to print an entire DIV I have on my screen and I've gotten this far:

const printAsPdf = () => {
  html2canvas(pageElement.current, {
    useCORS: true,
    allowTaint: true,
    scrollY: -window.scrollY,
  }).then(canvas => {
    const image = canvas.toDataURL('image/jpeg', 1.0);
    const doc = new jsPDF('p', 'px', 'a4');
    const pageWidth = doc.internal.pageSize.getWidth();
    const pageHeight = doc.internal.pageSize.getHeight();

    const widthRatio = pageWidth / canvas.width;
    const heightRatio = pageHeight / canvas.height;
    const ratio = widthRatio > heightRatio ? heightRatio : widthRatio;

    const canvasWidth = canvas.width * ratio;
    const canvasHeight = canvas.height * ratio;

    doc.addImage(image, 'JPEG', 0, 0, canvasWidth, canvasHeight);
    doc.output('dataurlnewwindow');
  });
};

This fills up the page with the image/canvas of my choosing. But I am not able to align the image dead center on the page.


Solution

  • This problem required some old-school CSS tricks. I recalled how we used to center images back in the day with position: absolute; where we would calculate the image width, and canvas width, negate it and divide it by half. Using the same technique here worked like a charm!

    const marginX = (pageWidth - canvasWidth) / 2;
    const marginY = (pageHeight - canvasHeight) / 2;
    

    So, the complete function looks like this:

    const printAsPdf = () => {
      html2canvas(pageElement.current, {
        useCORS: true,
        allowTaint: true,
        scrollY: -window.scrollY,
      }).then(canvas => {
        const image = canvas.toDataURL('image/jpeg', 1.0);
        const doc = new jsPDF('p', 'px', 'a4');
        const pageWidth = doc.internal.pageSize.getWidth();
        const pageHeight = doc.internal.pageSize.getHeight();
    
        const widthRatio = pageWidth / canvas.width;
        const heightRatio = pageHeight / canvas.height;
        const ratio = widthRatio > heightRatio ? heightRatio : widthRatio;
    
        const canvasWidth = canvas.width * ratio;
        const canvasHeight = canvas.height * ratio;
    
        const marginX = (pageWidth - canvasWidth) / 2;
        const marginY = (pageHeight - canvasHeight) / 2;
    
        doc.addImage(image, 'JPEG', marginX, marginY, canvasWidth, canvasHeight);
        doc.output('dataurlnewwindow');
      });
    };