Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

100
Vistas
¿Puedo establecer una cantidad de imágenes por página usando jsPDF?

Necesito imprimir unas imágenes en un pdf con una breve descripción de cada una de ellas. Veo que en la parte de abajo los corta

ingrese la descripción de la imagen aquí

Aquí está mi código:

 async addImageToPdf(elementId: string) { const thumbnailsHtml = document.getElementById(elementId) as HTMLElement; await this.sleep(500); const canvas = await html2canvas(thumbnailsHtml, { windowWidth: 1200, windowHeight: 1200, scale: 1, scrollX: 0, scrollY: 0, allowTaint: true, useCORS: true, }); const imgData = canvas.toDataURL("image/jpeg", 0.9); await this.sleep(500); const imgProps = this.pdf.getImageProperties(imgData); const pdfWidth = 210 /* this.pdf.internal.pageSize.getWidth() */; const pageHeight = this.pdf.internal.pageSize.getHeight(); const imgHeight = (imgProps.height * pdfWidth) / 1161 /* imgProps.width */; var heightLeft = imgHeight; var position = 0; this.pdf.addImage( imgData, "JPEG", 10, // Position of image from left and right 8, // Position of image from top and bottom pdfWidth, imgHeight, undefined, "FAST" ); heightLeft -= pageHeight; while (heightLeft >= 0) { position = heightLeft - imgHeight; this.pdf.addPage(); this.pdf.addImage( imgData, "JPEG", 5, position + 5, pdfWidth, imgHeight, undefined, "FAST" ); heightLeft -= pageHeight; } }

Esto proviene de una plantilla de Vue que recorre todas las imágenes almacenadas en una matriz.

¿Hay alguna forma de establecer una cantidad X de imágenes por página para evitar que esto suceda?

about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda