'); document.body.appendChild(iframe);iframe.contentWindow.addEventListener('afterprint', function () { setTimeout(function () { iframe.parentNode.removeChild(iframe); // Limpia el iframe después de imprimir }, 100); });iframe.addEventListener('load', function () { clonedImage.style.maxWidth = '100%'; // Ajusta el tamaño de la imagen al contenedor const body = iframe.contentDocument.body; body.style.textAlign = 'center'; // Centra la imagen body.appendChild(clonedImage);clonedImage.addEventListener('load', function () { iframe.contentWindow.print(); // Ejecuta la impresión }); }); }); }); });