Skip to content

Free toolsImages

TIFF to PDF

Scans from a scanner or fax, one page per image, in one PDF.

More free conversions, where you upload. The Fylane extension does the same work inside any upload form, on its own free share every day.About the extension

How to convert TIFF to PDF

  1. Drop the TIFF files.
  2. Order them; pick a page size.
  3. Press Convert and download the PDF.

What happens to your file

Each TIFF is decoded on Fylane’s servers and placed on a page at its own size, or on A4 or Letter with the margin you chose; the images are not re-compressed beyond what PDF needs.

A multi-page TIFF contributes its first page today; drop the pages as separate files for every page.

Questions

Will the PDF be searchable?

Not by itself — a scan is a picture. Run the result through OCR PDF to add a text layer.

Do this in code

curl -X POST https://api.fylane.dev/v1/jobs \
  -H "Authorization: Bearer $FYLANE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "file_id": "<file id>",
    "operation": "image.to-pdf",
    "options": {
      "page_size": "fit",
      "orientation": "auto",
      "margin": "none",
      "combine": "one",
      "file_ids": [
        "<second file id>"
      ]
    }
  }'

The same operation, image.to-pdf — One or more images become one PDF, a page per image at its own size. Upload first with the quickstart; every option is on the operations page. 500 free credits a month, then $5 per thousand.