This guide covers all major PDF and document tools available at FileConvertIt. Everything runs in your browser — no uploads, no account required.
The editing suite lets you modify existing PDF documents without any specialist software.
Click any text on a PDF page to edit it in place. The tool auto-detects font size and colour so your edits blend in seamlessly. Ideal for correcting typos, updating dates, or changing names on certificates.
Paint over text to hide it using the auto-sampled background colour. Works well on white or lightly coloured pages. For guaranteed permanent removal use the Redact PDF tool instead.
Permanently black out sensitive information — names, addresses, account numbers. Redactions are burnt into the page; the original text is not recoverable from the output file.
All conversion tools produce clean, print-ready A4 PDFs.
Convert .docx Word documents to PDF. Headings, bold and italic text, bullet lists, numbered lists, horizontal rules, and basic tables are all preserved. No Word installation required.
Convert .xlsx spreadsheets to PDF in A4 landscape orientation. All sheets are rendered as tables with grid lines. The first row is treated as a header and highlighted automatically.
Convert .pptx presentations to PDF — one page per slide. Text content and approximate positions are preserved. Widescreen (16:9) and standard (4:3) aspect ratios are both supported.
Convert .html files or paste HTML markup directly. Supports headings, paragraphs, lists, tables, code blocks, and blockquotes. External CSS and images are not rendered.
1-3, 5, 7-10import { PDFDocument, StandardFonts, rgb } from 'pdf-lib';
const doc = await PDFDocument.create();
const page = doc.addPage([595.28, 841.89]); // A4
const font = await doc.embedFont(StandardFonts.Helvetica);
page.drawText('Hello, FileConvertIt!', {
x: 65, y: 780, size: 24,
font, color: rgb(0.1, 0.1, 0.8),
});
const bytes = await doc.save();
FileConvertIt — fileconvertit.com — All tools are free and run 100% in your browser.