ImageGo Logo
📑 PDF Converter

Convert JPG to PDF Online

Combine multiple photos, JPG, and PNG images into a single clean PDF document.

📑
Upload Images (JPG, PNG)
Select single or multiple images to convert
`); selectedFiles.forEach(f => { const r = new FileReader(); r.onload = (ev) => { const im = win.document.createElement("img"); im.src = ev.target.result; win.document.body.appendChild(im); }; r.readAsDataURL(f); }); setTimeout(() => { win.print(); showToast("PDF generated! Choose 'Save as PDF' in the print dialog.", "success"); }, 600); }); resetBtn.addEventListener("click", () => { workspace.style.display = "none"; dropzone.style.display = "flex"; selectedFiles = []; fileInput.value = ""; }); });