Free tools › Images
TIFF to JPG
The scanner’s and the print shop’s format, into the one every site accepts.
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 JPG
- Drop the TIFF files.
- Pick a quality.
- Press Convert and download the JPGs.
What happens to your file
Browsers cannot show TIFF, so the file is uploaded, decoded on Fylane’s servers, encoded as JPEG at your quality, and deleted on schedule.
A multi-page TIFF (a scanned document) gives its first page; for every page, use TIFF to PDF.
TIFF can hold 16-bit colour, layers and CMYK; the JPG is 8-bit RGB, which is what screens and websites show.
Questions
How much smaller will it be?
An uncompressed TIFF is typically ten to thirty times larger than a JPG of the same picture at quality 82.
Related tools
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.convert",
"options": {
"format": "jpeg",
"quality": 82
}
}'The same operation, image.convert — Re-encode to WebP, JPEG, PNG or AVIF at your quality. Upload first with the quickstart; every option is on the operations page. 500 free credits a month, then $5 per thousand.