FileConvertIt — Complete Feature Guide

This guide covers all major PDF and document tools available at FileConvertIt. Everything runs in your browser — no uploads, no account required.


PDF Editing Tools

The editing suite lets you modify existing PDF documents without any specialist software.

Edit PDF Text

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.

Erase PDF Text

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.

Redact PDF

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.

Convert To PDF

All conversion tools produce clean, print-ready A4 PDFs.

Word to PDF

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.

Excel to PDF

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.

PowerPoint to PDF

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.

HTML to PDF

Convert .html files or paste HTML markup directly. Supports headings, paragraphs, lists, tables, code blocks, and blockquotes. External CSS and images are not rendered.

PDF Organisation

Security & Privacy

  1. Protect PDF — encrypt with AES-256 password protection
  2. Unlock PDF — remove password (you must know it first)
  3. Remove Metadata — wipe author, software, and GPS fingerprints
  4. Redact PDF — permanent black-out of sensitive content

Code Example — pdf-lib Basics

import { 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.