- Does my PDF get uploaded anywhere?
- No. The file is opened with JavaScript (the pdf-lib library) directly in your browser, and the output PDFs are assembled in memory on your machine. There is no server request carrying your document, so Convertitive never sees its contents.
- Do the extracted pages lose any quality?
- No. Splitting copies the original page objects — fonts, images, and vector drawing instructions — byte-for-byte into the new file. Nothing is rendered to pixels or re-compressed, so the output pages are exactly as sharp as the source.
- Can I split an encrypted or password-protected PDF?
- Not directly. If the PDF is encrypted, the tool cannot parse its page tree and will show an error instead of producing broken output. Open the file in a PDF reader with the password, save an unprotected copy, and split that.
- How does the page numbering work?
- Page numbers are 1-based and the range is inclusive at both ends — the same convention every PDF viewer uses. From 1, To 1 extracts just the first page; From 3, To 7 extracts pages 3, 4, 5, 6, and 7 (five pages total).
- Why do the pages download individually instead of as a ZIP?
- Bundling into a ZIP would mean shipping an extra compression library to your browser for every visitor, for a marginal convenience. Individual downloads keep the tool small and fast, and most splits only need a handful of pages anyway. Split-every-page mode is capped at 100 pages for the same reason.
- Does extraction keep links, annotations, and bookmarks?
- Anything attached to the page itself survives: link rectangles, highlights, form fields, and other page-level annotations are part of the page object and travel with it. Document-level structures — bookmarks (the outline panel), attachments, and metadata like the title — belong to the old document as a whole and are not carried into the new file.